core/expat/Pkgfile

21 lines
471 B
Plaintext
Raw Normal View History

# Description: A fast, non-validating, stream-oriented XML parsing library
2021-03-27 10:48:14 +01:00
# URL: https://libexpat.github.io/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=expat
2022-03-29 10:49:14 +02:00
version=2.4.8
release=1
2021-12-13 12:22:25 +01:00
source=(https://download.sourceforge.net/$name/$name-$version.tar.xz)
2021-03-27 10:48:14 +01:00
build() {
cd $name-$version
2021-03-27 10:48:14 +01:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
install -D -m 0644 doc/xmlwf.1 $PKG/usr/share/man/man1/xmlwf.1
rm -r $PKG/usr/{lib/cmake,share/doc}
}