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