diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-02-28 02:24:59 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-02-28 02:24:59 -0500 |
commit | 0dd021f56a8c6682d00fb0cd9e8e967fed0fad7f (patch) | |
tree | 66a8c7baa1fdfaec69437ea45f2d0ad5fc6fa9c3 /~lukeshu/conkeror-git/PKGBUILD | |
parent | 7275399e96c64abc852c3746aa58d10bee8a5a44 (diff) | |
download | abslibre-0dd021f56a8c6682d00fb0cd9e8e967fed0fad7f.tar.gz abslibre-0dd021f56a8c6682d00fb0cd9e8e967fed0fad7f.tar.bz2 abslibre-0dd021f56a8c6682d00fb0cd9e8e967fed0fad7f.zip |
conkeror has been moved form Arch's [community] to AUR, so I'm adopting it in [~lukeshu]
Diffstat (limited to '~lukeshu/conkeror-git/PKGBUILD')
-rw-r--r-- | ~lukeshu/conkeror-git/PKGBUILD | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/~lukeshu/conkeror-git/PKGBUILD b/~lukeshu/conkeror-git/PKGBUILD new file mode 100644 index 000000000..5d68e26c9 --- /dev/null +++ b/~lukeshu/conkeror-git/PKGBUILD @@ -0,0 +1,50 @@ +# Maintainer (parabola): Luke Shumaker <lukeshu@sbcglobal.net +# Maintainer (aur): Ivy Foster <joyfulgirl@archlinux.us> +# Maintainer (k[community]): Stefan Husmann <stefan-husmann@t-online.de> +# Contributor: Heeru Kiyura <M8R-p9i5nh@mailinator.com> + +_pkgname=conkeror +pkgname=conkeror-git +pkgver=20120228 +pkgrel=1 +pkgdesc="A highly programmable web browser based on Mozilla XULRunner." +arch=('any') +url="http://conkeror.mozdev.org/" +license=('MPL' 'GPL' 'LGPL') +depends=('xulrunner' 'desktop-file-utils') +makedepends=('imagemagick') +provides=(conkeror) +source=( + https://repo.parabolagnulinux.org/sources/~lukeshu/$pkgname-$pkgver-1-any.src.tar.xz + conkeror_gimpfile.xpm conkeror.sh) +changelog=ChangeLog +install=conkeror-git.install + +build() { + cd "$srcdir/$_pkgname" + make +} + +package() { + cd "$srcdir/$_pkgname" + + install -d "$pkgdir"/usr/share/{conkeror,man/man1,pixmaps} + cp -a "$srcdir/$_pkgname"/* "$pkgdir"/usr/share/conkeror + + install -Dm644 "$pkgdir"/usr/share/conkeror/contrib/man/conkeror.1 \ + "$pkgdir"/usr/share/man/man1/conkeror.1 + install -Dm644 "$srcdir/$_pkgname"/debian/conkeror.desktop \ + "$pkgdir"/usr/share/applications/conkeror.desktop + install -Dm644 "$srcdir"/conkeror_gimpfile.xpm "$pkgdir"/usr/share/pixmaps + + install -Dm755 "$srcdir"/conkeror.sh "$pkgdir"/usr/bin/conkeror + + mv "$pkgdir"/usr/share/conkeror/conkeror-spawn-helper "$pkgdir"/usr/bin + rm "$pkgdir"/usr/share/conkeror/conkeror-spawn-helper.c + rm -r "$pkgdir"/usr/share/conkeror/contrib/man + rm -r "$pkgdir"/usr/share/conkeror/debian +} + +md5sums=('5ebcc14496e6b232f61b42dcbc609d61' + 'b592582a5b923db1707615564a95737f' + '11c6c76a2639254754b34a542f1965a1') |