]> git.pld-linux.org Git - packages/crossmingw64-headers.git/blame - crossmingw64-headers.spec
- initial dropin.
[packages/crossmingw64-headers.git] / crossmingw64-headers.spec
CommitLineData
93245430
PS
1Summary: Cross Mingw64 GNU development utilities - headers
2Summary(pl.UTF-8): Skrośne narzędzia programistyczne GNU dla Mingw64 - pliki nagłowkowe
3Name: crossmingw64-headers
4Version: 1.0
5Release: 0.1
6License: ZPL v2.1 with parts on Public Domain, BSD and LGPL.
7Group: Development/Tools
8# svn co https://mingw-w64.svn.sourceforge.net/svnroot/mingw-w64/branches/releases/v1.0/mingw-w64-headers mingw64-headers
9%define _rev 3647
10Source0: mingw64-headers.tar.bz2
11# Source0-md5: 900f8604d077d904f5236b89a88ed416
12URL: http://mingw-w64.sourceforge.net/
13BuildRequires: automake
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%define target x86_64-pc-mingw32
17%define arch %{_prefix}/%{target}
18
19%description
20crossmingw64 is a complete cross-compiling development system for
21building stand-alone Microsoft Windows applications under Linux using
22the Mingw64 build libraries. This includes a binutils, gcc with g++
23and objc, and libstdc++, all cross targeted to x86_64-pc-mingw32,
24along with supporting Win64 libraries in PE+ format from free sources.
25
26This package contains cross targeted headers for Win64.
27
28%description -l pl.UTF-8
29crossmingw64 jest kompletnym systemem do skrośnej kompilacji,
30pozwalającym budować aplikacje MS Windows pod Linuksem używając
31bibliotek mingw64. System składa się z binutils, gcc z g++ i objc,
32libstdc++ - wszystkie generujące kod dla platformy x86_64-pc-mingw32,
33oraz z bibliotek w PE+.
34
35Ten pakiet zawiera pliki nagłówkowe dla Win64.
36
37%prep
38%setup -q -n mingw64-headers
39if [ "`svnversion -n`" != "%{_rev}" ]; then
40 exit 1
41fi
42
43%build
44./configure \
45 --prefix=%{_prefix} \
46 --build=%{_target_platform} \
47 --host=%{target} \
48 --with-sdk=all
49
50%{__make} all
51
52%install
53rm -rf $RPM_BUILD_ROOT
54
55%{__make} install \
56 DESTDIR=$RPM_BUILD_ROOT
57
58%clean
59rm -rf $RPM_BUILD_ROOT
60
61%files
62%defattr(644,root,root,755)
63#%doc README
64%{arch}/include
This page took 0.083464 seconds and 4 git commands to generate.