diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-02-24 14:50:00 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-02-24 14:50:00 +0100 |
commit | 82e1a8e4caf3318dbb60adda8c2649ae7ac15661 (patch) | |
tree | bc42529997fa58fc26481c8ba7524560f3baa5af /community/luaexpat/PKGBUILD | |
parent | f87cdf22eb712b5b1c118f768d4ff710fc839403 (diff) | |
parent | d466ef49f224a9347fe0375eac8126725e10a0a4 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/arpack/PKGBUILD
community/flac123/PKGBUILD
community/flashrom/PKGBUILD
community/liblockfile/PKGBUILD
community/python-cjson/PKGBUILD
community/tcpflow/PKGBUILD
extra/vlc/PKGBUILD
multilib/lib32-gnutls/PKGBUILD
multilib/lib32-libssh2/PKGBUILD
Diffstat (limited to 'community/luaexpat/PKGBUILD')
-rw-r--r-- | community/luaexpat/PKGBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/community/luaexpat/PKGBUILD b/community/luaexpat/PKGBUILD index 4d4a35193..1ee938ed0 100644 --- a/community/luaexpat/PKGBUILD +++ b/community/luaexpat/PKGBUILD @@ -1,8 +1,10 @@ +# $Id: PKGBUILD 66195 2012-02-23 03:06:28Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Lucas Hermann Negri <kkndrox@gmail.com> pkgname=luaexpat pkgver=1.2.0 -pkgrel=1 +pkgrel=2 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' 'mips64el') url='http://code.matthewwild.co.uk/lua-expat' @@ -14,15 +16,15 @@ source=("http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz" md5sums=('03efe50c7f30a34580701e6527d7bfee' 'b89a09379d3e46e6496255e44cecc316') -build() { - cd $startdir/src/ +build() { + cd $srcdir/ mv newconfig $pkgname-$pkgver/config cd $pkgname-$pkgver make } package() { - cd $startdir/src/$pkgname-$pkgver - make DESTDIR=$startdir/pkg install - mv usr $startdir/pkg + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install + mv usr $pkgdir } |