core/expat/Pkgfile

21 lines
505 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
2024-03-13 19:37:43 +01:00
version=2.6.2
release=1
2024-03-13 19:37:43 +01:00
source=(https://github.com/libexpat/libexpat/releases/download/R_${version//./_}/$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}
}