]> git.pld-linux.org Git - packages/crossmingw32-libxml2.git/blame - crossmingw32-libxml2.spec
- updated to 2.9.1
[packages/crossmingw32-libxml2.git] / crossmingw32-libxml2.spec
CommitLineData
d6d063a5 1%define realname libxml2
254c0603
JB
2Summary: libXML library - cross MinGW32 version
3Summary(pl.UTF-8): Biblioteka libXML wersja 2 - wersja skrośna dla MinGW32
d6d063a5 4Name: crossmingw32-%{realname}
a47449f3
JB
5Version: 2.9.1
6Release: 1
bae24ee6 7License: MIT
a338d023 8Group: Development/Libraries
bae24ee6 9#Source0: http://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/%{name}-%{version}.tar.bz2
d6d063a5 10Source0: ftp://xmlsoft.org/libxml2/%{realname}-%{version}.tar.gz
a47449f3 11# Source0-md5: 9c0cfef285d5c4a5c80d00904ddab380
2d77eca5
JB
12Patch0: %{realname}-man_fixes.patch
13Patch1: %{realname}-open.gz.patch
14Patch2: %{realname}-largefile.patch
bae24ee6 15URL: http://xmlsoft.org/
3fc69630 16BuildRequires: autoconf >= 2.68
5d33cd62 17BuildRequires: automake >= 1.4
a338d023 18BuildRequires: crossmingw32-gcc
d43adb62 19BuildRequires: crossmingw32-zlib >= 1.2.4-3
3fc69630 20BuildRequires: libtool >= 2:2.0
bae24ee6 21BuildRequires: sed >= 4.0
d43adb62 22Requires: crossmingw32-zlib >= 1.2.4-3
bae24ee6 23BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25%define no_install_post_strip 1
26
27%define target i386-mingw32
28%define target_platform i386-pc-mingw32
bae24ee6 29
30%define _sysprefix /usr
31%define _prefix %{_sysprefix}/%{target}
b33e056f 32%define _libdir %{_prefix}/lib
bae24ee6 33%define _pkgconfigdir %{_prefix}/lib/pkgconfig
a338d023 34%define _dlldir /usr/share/wine/windows/system
bae24ee6 35%define __cc %{target}-gcc
36%define __cxx %{target}-g++
fa16681a 37%define __pkgconfig_provides %{nil}
bb67111e
JB
38
39%ifnarch %{ix86}
40# arch-specific flags (like alpha's -mieee) are not valid for i386 gcc
41%define optflags -O2
42%endif
43# -z options are invalid for mingw linker, most of -f options are Linux-specific
44%define filterout_ld -Wl,--as-needed -Wl,-z,relro -Wl,-z,combreloc
45%define filterout_c -f[-a-z0-9=]*
bae24ee6 46
47%description
48This library allows you to manipulate XML files.
49
a338d023 50This package contains the cross version for Win32.
bae24ee6 51
52%description -l pl.UTF-8
53Biblioteka libxml2 umożliwia manipulowanie zawartością plików XML.
54
a338d023
JB
55Ten pakiet zawiera wersję skrośną dla Win32.
56
57%package static
254c0603
JB
58Summary: Static libxml2 library (cross MinGW32 version)
59Summary(pl.UTF-8): Statyczna biblioteka libxml2 (wersja skrośna MinGW32)
a338d023
JB
60Group: Development/Libraries
61Requires: %{name} = %{version}-%{release}
62
63%description static
254c0603 64Static libxml2 library (cross MinGW32 version).
a338d023
JB
65
66%description static -l pl.UTF-8
254c0603 67Statyczna biblioteka libxml2 (wersja skrośna MinGW32).
a338d023
JB
68
69%package dll
70Summary: DLL libxml2 library for Windows
71Summary(pl.UTF-8): Biblioteka DLL libxml2 dla Windows
72Group: Applications/Emulators
d43adb62 73Requires: crossmingw32-zlib-dll >= 1.2.4-3
a338d023
JB
74Requires: wine
75
76%description dll
77DLL libxml2 library for Windows.
78
79%description dll -l pl.UTF-8
80Biblioteka DLL libxml2 dla Windows.
bae24ee6 81
82%prep
d6d063a5 83%setup -q -n %{realname}-%{version}
bae24ee6 84%patch0 -p1
85%patch1 -p1
86%patch2 -p1
bae24ee6 87
88%build
bae24ee6 89%{__libtoolize}
90%{__aclocal}
91%{__autoconf}
92%{__autoheader}
93%{__automake}
94%configure \
95 --target=%{target} \
96 --host=%{target} \
2d77eca5 97 --disable-silent-rules \
a338d023 98 --without-python
bae24ee6 99
100%{__make}
101
102%install
103rm -rf $RPM_BUILD_ROOT
104
105%{__make} install \
a338d023 106 DESTDIR=$RPM_BUILD_ROOT
bae24ee6 107
a338d023
JB
108install -d $RPM_BUILD_ROOT%{_dlldir}
109mv -f $RPM_BUILD_ROOT%{_prefix}/bin/*.dll $RPM_BUILD_ROOT%{_dlldir}
110
111%if 0%{!?debug:1}
112%{target}-strip --strip-unneeded -R.comment -R.note $RPM_BUILD_ROOT%{_dlldir}/*.dll
113%{target}-strip -g -R.comment -R.note $RPM_BUILD_ROOT%{_libdir}/*.a
114%endif
115
2d77eca5 116%{__rm} -r $RPM_BUILD_ROOT%{_datadir}/{aclocal,doc,gtk-doc,man}
bae24ee6 117
118%clean
119rm -rf $RPM_BUILD_ROOT
120
121%files
122%defattr(644,root,root,755)
123%doc AUTHORS ChangeLog Copyright NEWS README TODO
a338d023
JB
124%{_libdir}/libxml2.dll.a
125%{_libdir}/libxml2.la
126%{_includedir}/libxml2
127%{_pkgconfigdir}/libxml-2.0.pc
bae24ee6 128
a338d023
JB
129%files static
130%defattr(644,root,root,755)
131%{_libdir}/libxml2.a
bae24ee6 132
a338d023
JB
133%files dll
134%defattr(644,root,root,755)
135%{_dlldir}/libxml2-*.dll
This page took 0.066275 seconds and 4 git commands to generate.