diff options
Diffstat (limited to 'repo/expat/expat.xibuild')
-rw-r--r-- | repo/expat/expat.xibuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/expat/expat.xibuild b/repo/expat/expat.xibuild new file mode 100644 index 0000000..d921e1b --- /dev/null +++ b/repo/expat/expat.xibuild @@ -0,0 +1,22 @@ +#!/bin/sh + +MAKEDEPS="make " +DEPS="musl" + +PKG_VER=2.4.2 +SOURCE=https://github.com/libexpat/libexpat/releases/download/R_$(echo $PKG_VER | sed "s|\.|_|g")/expat-$PKG_VER.tar.xz +DESC="An XML parser library" + +build () { + ./configure --prefix=/usr --disable-static --docdir=/usr/share/doc/expat-$PKG_VER + make +} + +check () { + make check +} + +package () { + make DESTDIR=$PKG_DEST install + install -m644 doc/* $PKG_DEST/usr/share/doc/expat-$PKG_VER +} |