compat-32/libxml2-32/Pkgfile

25 lines
538 B
Plaintext
Raw Normal View History

# Description: XML library version 2
2014-10-18 13:57:32 +02:00
# URL: http://xmlsoft.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2014-10-18 13:57:32 +02:00
# Depends on: zlib-32 xz-32 libxml2
name=libxml2-32
2017-06-19 17:46:31 +02:00
version=2.9.4.83
release=1
#source=(ftp://xmlsoft.org/libxml2/${name%-*}-$version.tar.gz)
source=(http://crux.s3.amazonaws.com/dist/${name%-*}-$version.tar.xz)
2014-10-18 13:57:32 +02:00
build() {
cd ${name%-*}-$version
2014-10-18 13:57:32 +02:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
2014-10-18 13:57:32 +02:00
--without-python
make
make DESTDIR=$PKG install
2015-11-21 03:10:45 +01:00
2016-05-28 07:31:35 +02:00
rm -r $PKG/usr/{bin,include,share/man,share}
}