diff options
Diffstat (limited to 'gnome-unstable/epiphany/PKGBUILD')
-rw-r--r-- | gnome-unstable/epiphany/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnome-unstable/epiphany/PKGBUILD b/gnome-unstable/epiphany/PKGBUILD new file mode 100644 index 000000000..025ee5a82 --- /dev/null +++ b/gnome-unstable/epiphany/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 116342 2011-03-22 22:23:16Z ibiru $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=epiphany +pkgver=2.91.92 +pkgrel=1 +install=epiphany.install +pkgdesc="A GNOME3 web browser based on the WebKit rendering engine." +arch=('i686' 'x86_64') +license=('GPL') +depends=('libsoup-gnome' 'gsettings-desktop-schemas' 'libwebkit3' 'nss' 'iso-codes' 'dconf' 'gobject-introspection') +makedepends=('intltool' 'networkmanager' 'gnome-doc-utils' 'startup-notification') +options=('!libtool' '!emptydirs') +groups=('gnome') +url="http://www.gnome.org/projects/epiphany/" +source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.91/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('16bfb56af1723db458aa3c9942218480407ed199e78dbba33af483bcf417db1c') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-scrollkeeper \ + --enable-network-manager + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |