24 lines
466 B
Plaintext
Raw Normal View History

# Description: XML library version 2
2014-10-18 22:57:32 +11:00
# URL: http://xmlsoft.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2019-08-27 21:48:19 +10:00
# Depends on: libxml2 xz-32 zlib-32
name=libxml2-32
2021-05-16 19:45:01 +10:00
version=2.9.12
release=1
2018-03-10 14:31:43 +11:00
source=(http://xmlsoft.org/sources/${name%-*}-$version.tar.gz)
2014-10-18 22:57:32 +11:00
build() {
cd ${name%-*}-$version
2014-10-18 22:57:32 +11:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
2014-10-18 22:57:32 +11:00
--without-python
make
make DESTDIR=$PKG install
2015-11-21 13:10:45 +11:00
2016-05-28 15:31:35 +10:00
rm -r $PKG/usr/{bin,include,share/man,share}
}