compat-32/expat-32/Pkgfile

24 lines
545 B
Plaintext
Raw Normal View History

# Description: A fast, non-validating, stream-oriented XML parsing library
2022-02-20 02:20:33 +01:00
# URL: https://libexpat.github.io/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: expat
name=expat-32
2024-03-14 22:39:51 +01:00
version=2.6.2
release=1
2017-07-15 13:21:48 +02:00
source=(https://downloads.sourceforge.net/project/${name%-*}/${name%-*}/$version/${name%-*}-$version.tar.bz2)
2022-01-11 13:07:44 +01:00
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
2024-02-07 19:23:11 +01:00
rm -r $PKG/usr/{bin,include,share/doc,share/man}
2017-08-24 10:57:40 +02:00
rmdir $PKG/usr/share
}