2020-06-26 11:57:59 +00:00
|
|
|
# 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
|
2020-06-26 11:57:59 +00:00
|
|
|
|
|
|
|
name=expat
|
2022-10-26 11:30:27 +02:00
|
|
|
version=2.5.0
|
2020-06-26 11:57:59 +00:00
|
|
|
release=1
|
2021-12-13 12:22:25 +01:00
|
|
|
source=(https://download.sourceforge.net/$name/$name-$version.tar.xz)
|
2020-06-26 11:57:59 +00:00
|
|
|
|
2021-03-27 10:48:14 +01:00
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2020-06-26 11:57:59 +00:00
|
|
|
|
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}
|
2020-06-26 11:57:59 +00:00
|
|
|
}
|