diff options
Diffstat (limited to 'community/luaexpat/PKGBUILD')
-rw-r--r-- | community/luaexpat/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/luaexpat/PKGBUILD b/community/luaexpat/PKGBUILD new file mode 100644 index 000000000..e0f61fa82 --- /dev/null +++ b/community/luaexpat/PKGBUILD @@ -0,0 +1,22 @@ +# Contributor: Lucas Hermann Negri <kkndrox@gmail.com> +pkgname='luaexpat' +pkgver='1.1' +pkgrel='3' +pkgdesc='LuaExpat is a SAX XML parser based on the Expat library. LuaExpat is free software and uses the same license as Lua 5.0.' +arch=('i686' 'x86_64') +url='http://luaforge.net/projects/luaexpat/' +license=('MIT') +makedepends=('gcc' 'lua>=5.1' 'expat>=2') +depends=('lua' 'expat') +source=(http://luaforge.net/frs/download.php/2469/$pkgname-$pkgver.tar.gz 'newconfig') +md5sums=('6ecb895ccf5cff1e7f2facd438b1f8d0' 'b89a09379d3e46e6496255e44cecc316') + +build() { + cd $startdir/src/ + mv newconfig $pkgname-$pkgver/config + cd $pkgname-$pkgver + make || return 1 + make DESTDIR=$startdir/pkg install || return 1 + mv usr $startdir/pkg +} + |