diff options
Diffstat (limited to 'repo/mxml')
-rw-r--r-- | repo/mxml/mxml.xibuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/repo/mxml/mxml.xibuild b/repo/mxml/mxml.xibuild new file mode 100644 index 0000000..b909ec8 --- /dev/null +++ b/repo/mxml/mxml.xibuild @@ -0,0 +1,31 @@ +#!/bin/sh + +NAME="mxml" +DESC="Small XML library that you can use to read and write XML files" + +MAKEDEPS="" + +PKG_VER=3.3 +SOURCE="https://github.com/michaelrsweet/mxml/archive/v$PKG_VER.tar.gz" + +build() { + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var + make +} + +check() { + make testmxml +} + +package() { + make BUILDROOT="$PKG_DEST" install + rm -f "$PKG_DEST"/usr/lib/*.a +} + |