diff options
Diffstat (limited to 'extra/epiphany-extensions/PKGBUILD')
-rw-r--r-- | extra/epiphany-extensions/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extra/epiphany-extensions/PKGBUILD b/extra/epiphany-extensions/PKGBUILD new file mode 100644 index 000000000..00cfee2bc --- /dev/null +++ b/extra/epiphany-extensions/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 96469 2010-10-21 10:41:51Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=epiphany-extensions +pkgver=2.32.0 +pkgrel=1 +url="http://www.gnome.org/projects/epiphany/" +pkgdesc="Various extentions for the Epiphany web browser" +arch=('i686' 'x86_64') +license=('GPL') +depends=('epiphany>=2.30.6' 'opensp' 'hicolor-icon-theme') +makedepends=('pkgconfig' 'gnome-doc-utils>=0.20.0' 'intltool') +options=('!libtool' '!emptydirs') +install=epiphany-extensions.install +source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.32/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('1d6ac9f24050f409812a1653156033c6c005c27bc590f2a54164715771a1e16e') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var \ + --with-extensions=really-all --disable-scrollkeeper + make + make DESTDIR="${pkgdir}" install +} |