diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-12-12 09:40:29 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-12-12 09:40:29 -0300 |
commit | eef796260fb7cc9b81044e43df8f313c3c8e768a (patch) | |
tree | db6c6a07c0da415fe2e68648fbd39473cba2ccd2 /community/highlight | |
parent | 6767b6bbf9829a692c85c3dcd5ee0280982bd252 (diff) | |
parent | ef947957a5734ba25be3cdb6595491c816592133 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/btanks/PKGBUILD
community/highlight/PKGBUILD
community/luaexpat/PKGBUILD
community/luakit/PKGBUILD
community/luasec/PKGBUILD
community/luasocket/PKGBUILD
extra/graphviz/PKGBUILD
extra/gvfs/PKGBUILD
extra/lua/PKGBUILD
extra/openal/PKGBUILD
extra/sane/PKGBUILD
extra/vim/PKGBUILD
extra/vlc/PKGBUILD
Diffstat (limited to 'community/highlight')
-rw-r--r-- | community/highlight/PKGBUILD | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/community/highlight/PKGBUILD b/community/highlight/PKGBUILD index 31bb2505a..497291cc2 100644 --- a/community/highlight/PKGBUILD +++ b/community/highlight/PKGBUILD @@ -1,20 +1,25 @@ -# $Id: PKGBUILD 77163 2012-10-06 07:36:47Z bluewind $ +# $Id: PKGBUILD 81109 2012-12-12 00:47:35Z eric $ # Maintainer: Florian Pritz <flo@xinu.at> # Contributor: Jan Fader <jan.fader@web.de> pkgbase=highlight pkgname=(highlight highlight-gui) pkgver=3.12 -pkgrel=1 +pkgrel=2 url="http://www.andre-simon.de/doku/highlight/highlight.html" license=('GPL') arch=('i686' 'x86_64' 'mips64el') -makedepends=(qt lua boost) -source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2) -md5sums=('4b3f01e86a6b3fa25f3c4905a9cd63c7') +makedepends=(qt lua51 boost) +source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2{,.asc}) +md5sums=('4b3f01e86a6b3fa25f3c4905a9cd63c7' + 'b784cd3f264a0f281da36f26c0c7f2c2') build() { cd "$srcdir/$pkgbase-$pkgver" + sed -i 's#pkg-config --cflags lua#pkg-config --cflags lua5.1#' src/makefile + sed -i 's#pkg-config --libs lua#pkg-config --libs lua5.1#' src/makefile + sed -i 's#lua#lua5.1#g' src/gui-qt/highlight.pro + make make gui } |