summaryrefslogtreecommitdiff
path: root/community/conkeror-git/PKGBUILD
blob: 6aa7f04606b2768c7774e1ca60de2da150301cc0 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Contributor: Heeru Kiyura <M8R-p9i5nh@mailinator.com>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

_commit=5b74557e78bb16af6dabf72e9499e02ece5ae2be
pkgname=conkeror-git
pkgver=0.9.3
pkgrel=8
pkgdesc="A highly programmable web browser based on Mozilla XULRunner."
arch=('i686' 'x86_64' 'mips64el')
url="http://conkeror.mozdev.org/"
license=('MPL' 'GPL' 'LGPL')
depends=('xulrunner' 'desktop-file-utils')
makedepends=('git' 'imagemagick')
provides=(conkeror)
source=(conkeror_gimpfile.xpm conkeror.sh)
md5sums=('b592582a5b923db1707615564a95737f'
         'c8c2a1e54312fc504cbf868d55446e35')
install=conkeror-git.install

__gitroot="git://repo.or.cz/conkeror.git"
__gitname="conkeror"

build() {
  cd $srcdir

 ## Git checkout
  if [ -d $srcdir/${__gitname} ] ; then
    msg "Git checkout:  Updating existing tree"
    cd ${__gitname} && git checkout ${_commit}
    msg "Git checkout:  Tree has been updated"
  else
    msg "Git checkout:  Retrieving sources"
    git clone ${__gitroot} && cd ${__gitname} && git checkout ${_commit} 
  fi
  msg "Checkout completed"

 ## Build
  [ -d ${__gitname}-build ] || rm -rf $srcdir/${__gitname}-build
  git clone $srcdir/${__gitname} $srcdir/${__gitname}-build
  cd $srcdir/${__gitname}-build
  make
}

package() { 
  cd $srcdir/${__gitname}-build
  install -d $pkgdir/usr/share/conkeror
  install -d $pkgdir/usr/share/man/man1
  cp -a $srcdir/${__gitname}-build/* $pkgdir/usr/share/conkeror 
  install -Dm644 $pkgdir/usr/share/conkeror/contrib/man/conkeror.1 \
    $pkgdir/usr/share/man/man1/conkeror.1
  rm -r $pkgdir/usr/share/conkeror/contrib/man
  install -Dm644 $srcdir/${__gitname}-build/debian/conkeror.desktop \
    $pkgdir/usr/share/applications/conkeror.desktop
  rm -r $pkgdir/usr/share/conkeror/debian
  install -d $pkgdir/usr/share/pixmaps
  install -Dm644 $srcdir/conkeror_gimpfile.xpm $pkgdir/usr/share/pixmaps
  install -Dm755 $srcdir/conkeror.sh $pkgdir/usr/bin/conkeror
}