summaryrefslogtreecommitdiff
path: root/staging/gtkhtml/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'staging/gtkhtml/PKGBUILD')
-rw-r--r--staging/gtkhtml/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/staging/gtkhtml/PKGBUILD b/staging/gtkhtml/PKGBUILD
new file mode 100644
index 000000000..45bc4353c
--- /dev/null
+++ b/staging/gtkhtml/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 147192 2012-01-24 04:25:29Z eric $
+# Maintainer: Jan de Groot <jgc@archlinux.org>
+
+pkgname=gtkhtml
+pkgver=3.32.2
+pkgrel=3
+pkgdesc="A lightweight HTML renderer/editor widget for GTK2"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gconf' 'gtk2' 'gnome-icon-theme' 'enchant' 'iso-codes' 'libsoup')
+makedepends=('intltool')
+url="http://www.gnome.org"
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/3.32/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('8746053cf709e1de37c7ac775ab1364ddda4b75167660ed7f98a237b3797e39f')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr --sysconfdir=/etc \
+ --libexecdir=/usr/lib/gtkhtml \
+ --localstatedir=/var --disable-static \
+ --disable-deprecated-warning-flags
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+
+ rm -f "${pkgdir}/usr/bin/gtkhtml-editor-test"
+}