diff options
Diffstat (limited to 'community/conkeror-git/PKGBUILD')
-rw-r--r-- | community/conkeror-git/PKGBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/community/conkeror-git/PKGBUILD b/community/conkeror-git/PKGBUILD index 4b7ce8876..4343b023b 100644 --- a/community/conkeror-git/PKGBUILD +++ b/community/conkeror-git/PKGBUILD @@ -1,19 +1,20 @@ # Contributor: Heeru Kiyura <M8R-p9i5nh@mailinator.com> # Maintainer: Stefan Husmann <stefan-husmann@t-online.de> -_commit=34882281d19ff7ac8786f927b414e1af5afc9266 +_commit=0d883dfd5e61e7d0b8a96a079d69b46af064fdca pkgname=conkeror-git pkgver=0.9.3 -pkgrel=4 +pkgrel=5 pkgdesc="A highly programmable web browser based on Mozilla XULRunner." arch=('i686' 'x86_64') url="http://conkeror.mozdev.org/" license=('MPL' 'GPL' 'LGPL') -depends=('bash' 'xulrunner') +depends=('xulrunner' 'desktop-file-utils') makedepends=('git' 'imagemagick') provides=(conkeror) source=(conkeror_gimpfile.xpm) md5sums=('b592582a5b923db1707615564a95737f') +install=conkeror-git.install __gitroot="git://repo.or.cz/conkeror.git" __gitname="conkeror" @@ -24,7 +25,7 @@ build() { ## Git checkout if [ -d $srcdir/${__gitname} ] ; then msg "Git checkout: Updating existing tree" - cd ${__gitname} && git checkout "$_commit" + cd ${__gitname} && git checkout ${_commit} msg "Git checkout: Tree has been updated" else msg "Git checkout: Retrieving sources" @@ -54,7 +55,7 @@ package() { ln -s /usr/share/conkeror/contrib/run-conkeror \ $pkgdir/usr/bin/conkeror rm $pkgdir/usr/share/conkeror/conkeror-spawn-helper -# rm -r $pkgdir/usr/share/conkeror/debian + rm -r $pkgdir/usr/share/conkeror/debian install -d $pkgdir/usr/share/pixmaps install $srcdir/conkeror_gimpfile.xpm $pkgdir/usr/share/pixmaps } |