diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-02-04 11:57:36 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-02-04 11:57:36 +0100 |
commit | 0faf579c24046ce4256b76c0cedf751c3ef024a2 (patch) | |
tree | b34add6ffaf593bb556a93ac0fad20eda4204606 /community/luakit/PKGBUILD | |
parent | 415b1b011936d464fe3042233910d0ac14a8d858 (diff) | |
parent | de078a89b9e3a45b6b2e3f0c9d866962e5125ba3 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community-testing/amsn/PKGBUILD
community/luakit/PKGBUILD
testing/feh/PKGBUILD
testing/gimp/PKGBUILD
testing/libpng/PKGBUILD
testing/libwebkit/PKGBUILD
testing/php/PKGBUILD
testing/vlc/PKGBUILD
Diffstat (limited to 'community/luakit/PKGBUILD')
-rw-r--r-- | community/luakit/PKGBUILD | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/community/luakit/PKGBUILD b/community/luakit/PKGBUILD index f5630efd1..fc475cc43 100644 --- a/community/luakit/PKGBUILD +++ b/community/luakit/PKGBUILD @@ -3,14 +3,14 @@ pkgname=luakit pkgver=2011.07.22 -pkgrel=2 -pkgdesc='luakit is a highly configurable, micro-browser framework based on the WebKit web content engine and the GTK+ toolkit."Stable" release' +pkgrel=4 +pkgdesc='Highly configurable, micro-browser framework based on the WebKit web content engine and the GTK+ toolkit. "Stable" release.' arch=('i686' 'x86_64' 'mips64el') url='http://www.luakit.org/projects/luakit' license=('GPL3') -depends=('libwebkit' 'luafilesystem' 'libunique') +depends=('libwebkit' 'luafilesystem' 'libunique' 'desktop-file-utils') makedepends=('git' 'help2man') -options=(!makeflags) +options=(!makeflags) conflicts=('luakit-git' 'luakit-develop-git') install='luakit.install' source=("${pkgver}.tar.gz::https://github.com/mason-larobina/luakit/tarball/${pkgver}-r1") @@ -19,6 +19,9 @@ md5sums=('4937deb6bc81416e2deb037f4a5763e4') build() { cd mason-larobina-luakit-* + # Add missing library to PKGS in config.mk + sed -i 's|PKGS := .*|& javascriptcoregtk-1.0|' config.mk + make PREFIX=/usr DESTDIR=${pkgdir} all } |