summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8f3780768d424f5666085258cee0de622536028b (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
# Maintainer: Frederic Bezies <fredbezies at gmail dot com>
# Contributor: sudokode <sudokode@gmail.com>
# Contributor: Christos Nouskas <nous at archlinux dot us>
# Contributor: Jakub Luzny <limoto94@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=arora-git
pkgrel=1
pkgver=0.11.0.27.ga2d1975
pkgdesc="A lightweight, cross-platform Qt4 WebKit browser"
arch=('i686' 'x86_64')
url="https://github.com/arora/arora"
license=('GPL2')
depends=('qt4' 'qtwebkit')
makedepends=('git')
provides=('arora')
conflicts=('arora')
source=("git://github.com/Arora/arora.git")
sha256sums=('SKIP')
_gitname="arora"

pkgver() {
  cd "$srcdir/$_gitname"
  echo "$(git describe --always | sed 's/-/./g')"
}

build() {
  cd "$srcdir/$_gitname"
  qmake-qt4 PREFIX=/usr
  make sub-src-qmake_all
  make
}

package() {
  cd "$srcdir/$_gitname"
  make INSTALL_ROOT="$pkgdir" install
}