diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/arora/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/arora/PKGBUILD')
-rw-r--r-- | extra/arora/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/arora/PKGBUILD b/extra/arora/PKGBUILD new file mode 100644 index 000000000..9bcf87b01 --- /dev/null +++ b/extra/arora/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 110242 2011-02-18 07:44:40Z andrea $ +# Maintainer: +# Contributor: Pierre Schmitz <pierre@archlinux.de> +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=arora +pkgver=0.11.0 +pkgrel=2 +pkgdesc='A cross platform web browser built using Qt and WebKit' +arch=('i686' 'x86_64') +url='http://www.arora-browser.org' +license=('GPL') +depends=('qt' 'desktop-file-utils') +install='arora.install' +source=("http://arora.googlecode.com/files/arora-${pkgver}.tar.gz") +md5sums=('64334ce4198861471cad9316d841f0cb') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + qmake PREFIX="/usr" "CONFIG-=debug" -r + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make INSTALL_ROOT=${pkgdir} install +} |