summaryrefslogtreecommitdiff
path: root/pcr/conkeror-git
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-05-18 06:42:58 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2015-05-18 06:42:58 -0500
commitf2d125bc95925dc14987dc324af143460502b642 (patch)
treedf90d84ff48cd4a22621635c5039b4f4fc99e012 /pcr/conkeror-git
parentfceb4291e6d1ea3cd0ea62866b544873a4a72237 (diff)
downloadabslibre-f2d125bc95925dc14987dc324af143460502b642.tar.gz
abslibre-f2d125bc95925dc14987dc324af143460502b642.tar.bz2
abslibre-f2d125bc95925dc14987dc324af143460502b642.zip
conkeror-git-120527.1.225.gc57b7be-1: updating version
Diffstat (limited to 'pcr/conkeror-git')
-rw-r--r--pcr/conkeror-git/PKGBUILD35
-rw-r--r--pcr/conkeror-git/conkeror-git.install11
2 files changed, 46 insertions, 0 deletions
diff --git a/pcr/conkeror-git/PKGBUILD b/pcr/conkeror-git/PKGBUILD
new file mode 100644
index 000000000..4219fc569
--- /dev/null
+++ b/pcr/conkeror-git/PKGBUILD
@@ -0,0 +1,35 @@
+# Contributor (Arch): Ivy Foster <joyfulgirl@archlinux.us>
+# Contributor (Arch): Stefan Husmann <stefan-husmann@t-online.de>
+# Contributor (Arch): Heeru Kiyura <M8R-p9i5nh@mailinator.com>
+# Maintainer : Omar Vega Ramos <ovruni@gnu.org.pe>
+
+pkgname=conkeror-git
+pkgver=120527.1.225.gc57b7be
+pkgrel=1
+pkgdesc="A highly programmable web browser based on Mozilla XULRunner."
+arch=('i686' 'x86_64')
+url="http://conkeror.mozdev.org/"
+license=('MPL' 'GPL' 'LGPL')
+depends=('xulrunner' 'desktop-file-utils')
+makedepends=('git')
+provides=(conkeror)
+install=conkeror-git.install
+source=('git://repo.or.cz/conkeror.git')
+md5sums=('SKIP')
+_gitname="conkeror"
+
+pkgver() {
+ cd $_gitname
+ git describe --always|sed -e 's/debian.*+git//' -e 's/-/./g'
+}
+
+build() {
+ cd $_gitname
+ make PREFIX=/usr
+}
+
+package() {
+ cd $_gitname
+ make DESTDIR="$pkgdir" PREFIX=/usr install
+ rm -f "$pkgdir"/usr/share/doc/conkeror/COPYING
+}
diff --git a/pcr/conkeror-git/conkeror-git.install b/pcr/conkeror-git/conkeror-git.install
new file mode 100644
index 000000000..5e5cfef4d
--- /dev/null
+++ b/pcr/conkeror-git/conkeror-git.install
@@ -0,0 +1,11 @@
+post_install() {
+ update-desktop-database -q
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+post_remove() {
+ update-desktop-database -q
+}