diff options
author | davidovski <david@davidovski.xyz> | 2022-06-04 15:08:04 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-04 15:08:04 +0100 |
commit | 873665024ebfaa761ee49b508a79db7178aeb778 (patch) | |
tree | 6cd3b4ce3a9f4b0586ffa48e73a6ba4c8da2db43 /repo/mxml | |
parent | 4445f6e15185f58dc599390ab74df3ca19b437b7 (diff) |
added gnupg
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 +} + |