blob: a1a877cdfb98e8ab84a55d91f5857860784bf93f (
plain)
1 # Description: XML library version 2
2 # URL: http://xmlsoft.org/
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: libxml2 xz-32 zlib-32
5
6 name=libxml2-32
7 version=2.10.3
8 release=1
9 source=(https://download.gnome.org/sources/libxml2/${version:0:4}/libxml2-$version.tar.xz)
10
11 build() {
12 cd ${name%-*}-$version
13
14 ./configure \
15 --prefix=/usr \
16 --libdir=/usr/lib32 \
17 --sysconfdir=/etc \
18 --without-python
19
20 make
21 make DESTDIR=$PKG install
22
23 rm -r $PKG/usr/{bin,include,share/man,share}
24 }
|