blob: 4219fc569bb9442b5fc39e267fb0998e6807bf47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
}
|