2009-08-31 10:25:23 +02:00
|
|
|
%define __strip %{_mingw32_strip}
|
|
|
|
%define __objdump %{_mingw32_objdump}
|
|
|
|
%define _use_internal_dependency_generator 0
|
|
|
|
%define __find_requires %{_mingw32_findrequires}
|
|
|
|
%define __find_provides %{_mingw32_findprovides}
|
|
|
|
%define __os_install_post %{_mingw32_install_post}
|
|
|
|
|
|
|
|
Name: mingw32-runtime
|
2011-10-07 11:44:21 +02:00
|
|
|
Version: 1.0.1
|
2009-08-31 10:25:23 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: MinGW-W64 runtime for win32
|
|
|
|
|
|
|
|
License: Public Domain
|
|
|
|
Group: Development/Libraries
|
2010-09-24 02:00:10 +02:00
|
|
|
URL: http://mingw-w64.sourceforge.net/
|
2009-10-22 00:14:15 +02:00
|
|
|
Source0: http://dl.sourceforge.net/sourceforge/mingw-w64/mingw-w64-runtime-%{version}.tar.bz2
|
2010-08-10 23:26:11 +02:00
|
|
|
Source100: %{name}-rpmlintrc
|
2011-10-07 11:56:46 +02:00
|
|
|
Patch0: mingw-w64-runtime-1.0.1-vfw32mri.patch
|
2011-12-20 15:29:33 +01:00
|
|
|
# PATCH-FIX-UPSTREAM mingw-w64-runtime-1.0.1-fix-startup-crash.patch - patch taken from trunk, can be dropped with next release
|
|
|
|
Patch1: mingw-w64-runtime-1.0.1-fix-startup-crash.patch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
2009-08-31 10:25:23 +02:00
|
|
|
|
|
|
|
BuildArch: noarch
|
2011-12-20 15:29:33 +01:00
|
|
|
#!BuildIgnore: post-build-checks
|
2009-08-31 10:25:23 +02:00
|
|
|
|
|
|
|
BuildRequires: mingw32-filesystem
|
2009-11-27 09:24:18 +01:00
|
|
|
BuildRequires: mingw32-cross-binutils
|
|
|
|
BuildRequires: mingw32-cross-gcc-bootstrap >= 4.4.0
|
2009-08-31 10:25:23 +02:00
|
|
|
BuildRequires: mingw32-headers >= %{version}
|
|
|
|
|
|
|
|
# Once this is installed, mingw32-bootstrap (binary bootstrapper) is no
|
|
|
|
# longer needed.
|
|
|
|
Obsoletes: mingw32-runtime-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
MinGW Win64 cross-compiler runtime, base libraries.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2009-10-22 00:14:15 +02:00
|
|
|
%setup -q -n mingw-w64-runtime-%{version}
|
2011-10-07 11:56:46 +02:00
|
|
|
%patch0 -p0
|
2011-12-20 15:29:33 +01:00
|
|
|
%patch1 -p1
|
2010-09-21 22:30:54 +02:00
|
|
|
|
2009-08-31 10:25:23 +02:00
|
|
|
%build
|
|
|
|
./configure --host=%{_mingw32_target} --prefix=%{_prefix} --with-sysroot=%{_mingw32_sysroot} --enable-lib32 --disable-lib64
|
2011-12-20 15:29:33 +01:00
|
|
|
make
|
2009-08-31 10:25:23 +02:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2009-11-14 10:21:46 +01:00
|
|
|
# The make install installs in %{_prefix}/%{_mingw32_target}/lib
|
2010-09-06 09:22:21 +02:00
|
|
|
# which is the wrong location. Move it to %{_mingw32_libdir}.
|
2009-11-14 10:21:46 +01:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_mingw32_libdir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{_mingw32_target}
|
|
|
|
ln -s $RPM_BUILD_ROOT%{_mingw32_libdir} $RPM_BUILD_ROOT%{_prefix}/%{_mingw32_target}/lib
|
|
|
|
|
2009-08-31 10:25:23 +02:00
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
|
2009-11-14 10:21:46 +01:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_prefix}/%{_mingw32_target}/lib
|
2009-08-31 10:25:23 +02:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_mingw32_libdir}/*
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|