diff options
Diffstat (limited to 'community/mxml/PKGBUILD')
-rw-r--r-- | community/mxml/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/mxml/PKGBUILD b/community/mxml/PKGBUILD new file mode 100644 index 000000000..e6ca08f12 --- /dev/null +++ b/community/mxml/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 4277 2009-10-19 20:28:23Z giovanni $ +# Contributor: Roman Kyrylych <roman@archlinux.org> +# Contributor: Johannes Sjolund <j.sjolund@gmail.com> + +pkgname=mxml +pkgver=2.6 +pkgrel=1 +pkgdesc="A small XML parsing library " +arch=('i686' 'x86_64') +url="http://www.minixml.org/" +license=('LGPL') +depends=('glibc') +source=(http://ftp.easysw.com/pub/mxml/$pkgver/$pkgname-$pkgver.tar.gz) +md5sums=('68977789ae64985dddbd1a1a1652642e') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make DSTROOT=$pkgdir install + chmod -x $pkgdir/usr/lib/libmxml.a +} |