]> git.pld-linux.org Git - packages/crossmingw32-libxml2.git/blob - crossmingw32-libxml2.spec
e1a482bed489fe81077a2dc96e900c14c0722e4c
[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 %define         filterout_ld            -Wl,--as-needed -Wl,-z,relro -Wl,-z,combreloc
38
39 %description
40 This library allows you to manipulate XML files.
41
42 This package contains the cross version for Win32.
43
44 %description -l pl.UTF-8
45 Biblioteka libxml2 umożliwia manipulowanie zawartością plików XML.
46
47 Ten pakiet zawiera wersję skrośną dla Win32.
48
49 %package static
50 Summary:        Static libxml2 library (cross MinGW32 version)
51 Summary(pl.UTF-8):      Statyczna biblioteka libxml2 (wersja skrośna MinGW32)
52 Group:          Development/Libraries
53 Requires:       %{name} = %{version}-%{release}
54
55 %description static
56 Static libxml2 library (cross MinGW32 version).
57
58 %description static -l pl.UTF-8
59 Statyczna biblioteka libxml2 (wersja skrośna MinGW32).
60
61 %package dll
62 Summary:        DLL libxml2 library for Windows
63 Summary(pl.UTF-8):      Biblioteka DLL libxml2 dla Windows
64 Group:          Applications/Emulators
65 Requires:       crossmingw32-zlib-dll >= 1.2.4-3
66 Requires:       wine
67
68 %description dll
69 DLL libxml2 library for Windows.
70
71 %description dll -l pl.UTF-8
72 Biblioteka DLL libxml2 dla Windows.
73
74 %prep
75 %setup -q -n %{realname}-%{version}
76 %patch0 -p1
77 %patch1 -p1
78 %patch2 -p1
79
80 %build
81 %{__libtoolize}
82 %{__aclocal}
83 %{__autoconf}
84 %{__autoheader}
85 %{__automake}
86 %configure \
87         --target=%{target} \
88         --host=%{target} \
89         --disable-silent-rules \
90         --without-python
91
92 %{__make}
93
94 %install
95 rm -rf $RPM_BUILD_ROOT
96
97 %{__make} install \
98         DESTDIR=$RPM_BUILD_ROOT
99
100 install -d $RPM_BUILD_ROOT%{_dlldir}
101 mv -f $RPM_BUILD_ROOT%{_prefix}/bin/*.dll $RPM_BUILD_ROOT%{_dlldir}
102
103 %if 0%{!?debug:1}
104 %{target}-strip --strip-unneeded -R.comment -R.note $RPM_BUILD_ROOT%{_dlldir}/*.dll
105 %{target}-strip -g -R.comment -R.note $RPM_BUILD_ROOT%{_libdir}/*.a
106 %endif
107
108 %{__rm} -r $RPM_BUILD_ROOT%{_datadir}/{aclocal,doc,gtk-doc,man}
109
110 %clean
111 rm -rf $RPM_BUILD_ROOT
112
113 %files
114 %defattr(644,root,root,755)
115 %doc AUTHORS ChangeLog Copyright NEWS README TODO
116 %{_libdir}/libxml2.dll.a
117 %{_libdir}/libxml2.la
118 %{_includedir}/libxml2
119 %{_pkgconfigdir}/libxml-2.0.pc
120
121 %files static
122 %defattr(644,root,root,755)
123 %{_libdir}/libxml2.a
124
125 %files dll
126 %defattr(644,root,root,755)
127 %{_dlldir}/libxml2-*.dll
This page took 0.050722 seconds and 2 git commands to generate.