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