summaryrefslogtreecommitdiff
path: root/community/luaexpat/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/luaexpat/PKGBUILD
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/luaexpat/PKGBUILD')
-rw-r--r--community/luaexpat/PKGBUILD22
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
+}
+