2014-02-03 19:19:44 +01:00
|
|
|
#
|
|
|
|
# spec file for package mingw64-winpthreads
|
|
|
|
#
|
2017-01-14 21:49:32 +01:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2014-02-03 19:19:44 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: mingw64-winpthreads
|
2017-11-21 12:43:18 +01:00
|
|
|
Version: 5.0.3
|
2014-06-01 14:11:11 +02:00
|
|
|
Release: 0
|
2014-02-03 19:19:44 +01:00
|
|
|
Summary: A pthreads implementation for Windows
|
|
|
|
License: MIT and BSD-3-Clause
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Url: http://mingw-w64.sf.net/
|
2015-03-25 12:13:28 +01:00
|
|
|
|
2017-11-21 12:43:18 +01:00
|
|
|
#DL-URL: http://downloads.sf.net/mingw-w64/mingw-w64-v5.0.3.tar.bz2
|
2015-03-25 12:13:28 +01:00
|
|
|
Source: mingw-w64-winpthreads-%version.tar.xz
|
|
|
|
Source9: %name-rpmlintrc
|
2014-06-16 11:11:21 +02:00
|
|
|
BuildRequires: mingw64-cross-gcc-bootstrap
|
|
|
|
BuildRequires: mingw64-cross-pkg-config
|
2014-02-03 19:19:44 +01:00
|
|
|
BuildRequires: mingw64-filesystem
|
2014-10-24 12:09:52 +02:00
|
|
|
BuildRequires: mingw64-runtime
|
2014-02-03 19:19:44 +01:00
|
|
|
BuildRequires: xz
|
2014-06-01 14:11:11 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2014-10-22 04:53:49 +02:00
|
|
|
%_mingw64_package_header_debug
|
2014-06-01 14:11:11 +02:00
|
|
|
BuildArch: noarch
|
2014-02-14 21:10:23 +01:00
|
|
|
#!BuildIgnore: post-build-checks
|
2014-02-03 19:19:44 +01:00
|
|
|
|
|
|
|
%description
|
2014-06-01 14:11:11 +02:00
|
|
|
mingw-w64's implementation of POSIX threads for Windows.
|
2014-02-03 19:19:44 +01:00
|
|
|
|
2014-07-14 12:47:48 +02:00
|
|
|
%package -n mingw64-libwinpthread1
|
|
|
|
Summary: A pthreads implementation for Windows
|
|
|
|
Group: System/Libraries
|
|
|
|
Obsoletes: mingw64-winpthreads
|
|
|
|
|
|
|
|
%description -n mingw64-libwinpthread1
|
|
|
|
mingw-w64's implementation of POSIX threads for Windows.
|
|
|
|
|
2014-02-03 19:19:44 +01:00
|
|
|
%package devel
|
2014-02-14 21:10:23 +01:00
|
|
|
Summary: Development files for mingw64-winpthreads
|
2014-02-03 19:19:44 +01:00
|
|
|
Group: Development/Libraries/C and C++
|
2014-10-21 09:36:23 +02:00
|
|
|
Requires: mingw64-libwinpthread1 = %{version}
|
2014-02-03 19:19:44 +01:00
|
|
|
Provides: mingw64-unistd-pthread-devel
|
2014-09-21 21:41:36 +02:00
|
|
|
Obsoletes: mingw64-headers-dummy-pthread
|
2014-10-21 09:36:23 +02:00
|
|
|
Conflicts: mingw64-headers-dummy-pthread, otherproviders(mingw64-unistd-pthread-devel)
|
2014-02-03 19:19:44 +01:00
|
|
|
|
|
|
|
%description devel
|
2014-06-01 14:11:11 +02:00
|
|
|
mingw-w64's implementation of POSIX threads for Windows.
|
2014-02-03 19:19:44 +01:00
|
|
|
|
|
|
|
%_mingw64_debug_package
|
|
|
|
|
|
|
|
%prep
|
2014-06-01 14:11:11 +02:00
|
|
|
%setup -q -n winpthreads
|
2014-02-03 19:19:44 +01:00
|
|
|
|
|
|
|
%build
|
2015-03-25 12:13:28 +01:00
|
|
|
# The build is trying to link with libpthread.a but it has no need
|
2014-06-16 15:56:03 +02:00
|
|
|
# of any symbol from there, so just create a fake library and use it.
|
|
|
|
mkdir fakelib
|
|
|
|
pushd fakelib
|
|
|
|
touch empty.c
|
2014-10-21 09:36:23 +02:00
|
|
|
%{_mingw64_cc} -c empty.c
|
|
|
|
%{_mingw64_ar} rsc libpthread.a empty.o
|
2014-06-16 15:56:03 +02:00
|
|
|
popd
|
2014-10-21 09:36:23 +02:00
|
|
|
%{_mingw64_configure} \
|
2015-05-29 15:27:57 +02:00
|
|
|
--enable-static \
|
2014-06-16 11:11:21 +02:00
|
|
|
--enable-shared
|
2014-02-03 19:19:44 +01:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
2014-10-21 09:36:23 +02:00
|
|
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
2014-02-03 19:19:44 +01:00
|
|
|
|
2014-07-14 12:47:48 +02:00
|
|
|
%files -n mingw64-libwinpthread1
|
2014-02-03 19:19:44 +01:00
|
|
|
%defattr(-,root,root)
|
2014-10-21 09:36:23 +02:00
|
|
|
%{_mingw64_bindir}/libwinpthread-1.dll
|
2014-02-03 19:19:44 +01:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
2014-10-21 09:36:23 +02:00
|
|
|
%{_mingw64_includedir}/
|
|
|
|
%{_mingw64_libdir}/
|
2014-02-03 19:19:44 +01:00
|
|
|
|
|
|
|
%changelog
|