diff options
-rw-r--r-- | main/luaexpat/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/luaexpat/APKBUILD b/main/luaexpat/APKBUILD index e11ba10750..4223edad76 100644 --- a/main/luaexpat/APKBUILD +++ b/main/luaexpat/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 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." url="http://luaforge.net/projects/luaexpat/" license="MIT" -depends="lua expat uclibc" +depends="lua" makedepends="lua-dev expat-dev" install= source="http://luaforge.net/frs/download.php/2469/$pkgname-$pkgver.tar.gz @@ -17,6 +17,10 @@ build() { mv ../newconfig ./config make || return 1 +} + +package() { + cd "$srcdir/$pkgname-$pkgver" make LUA_DIR="$pkgdir"/usr/share/lua/5.1 LUA_LIBDIR="$pkgdir"/usr/lib/lua/5.1 install } |