compat-32/expat-32/Pkgfile

24 lines
544 B
Plaintext
Raw Normal View History

# Description: A fast, non-validating, stream-oriented XML parsing library
# URL: https://libexpat.github.io/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: expat
name=expat-32
2019-06-29 10:55:37 +02:00
version=2.2.7
release=1
2017-07-15 13:21:48 +02:00
source=(https://downloads.sourceforge.net/project/${name%-*}/${name%-*}/$version/${name%-*}-$version.tar.bz2)
build() {
2017-07-15 13:21:48 +02:00
cd ${name%-*}-$version
2016-03-26 01:10:57 +01:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32
make
2017-08-24 10:57:40 +02:00
make DESTDIR=$PKG install
2016-03-26 01:10:57 +01:00
2019-06-29 10:55:37 +02:00
rm -r $PKG/usr/{bin,include,share/doc}
2017-08-24 10:57:40 +02:00
rmdir $PKG/usr/share
}