summaryrefslogtreecommitdiff
path: root/extra/goffice0.8/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/goffice0.8/PKGBUILD')
-rw-r--r--extra/goffice0.8/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/goffice0.8/PKGBUILD b/extra/goffice0.8/PKGBUILD
new file mode 100644
index 000000000..8d794e218
--- /dev/null
+++ b/extra/goffice0.8/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 173347 2012-12-19 14:13:59Z jgc $
+# Maintainer: Aaron Griffin <aaron@archlinux.org>
+
+pkgname=goffice0.8
+pkgver=0.8.17
+pkgrel=2
+pkgdesc="A library of document-centric objects and utilities built on top of GLib and Gtk+"
+arch=('i686' 'x86_64')
+url="http://www.gnome.org"
+license=('GPL')
+options=('!libtool')
+depends=('gtk2' 'gconf' 'libgsf')
+conflicts=('goffice<0.10')
+makedepends=('pkgconfig' 'intltool' 'gtk-doc')
+source=(http://ftp.gnome.org/pub/gnome/sources/goffice/${pkgver%.*}/goffice-${pkgver}.tar.xz
+ use-apiver-for-dirs.patch)
+sha256sums=('165070beb67b84580afe80a8a100b674a81d553ab791acd72ac0c655f4fadb15'
+ '4507a49f6ccb13e55c0b3cc6831b7e0dcec7badb58a3661190e843f8607fa270')
+
+build() {
+ cd "${srcdir}/goffice-${pkgver}"
+ patch -Np0 -i "${srcdir}/use-apiver-for-dirs.patch"
+ sed -i -e 's/glib\/gregex.h/glib.h/' configure.in
+ autoreconf -fi
+ ./configure --prefix=/usr --sysconfdir=/etc \
+ --localstatedir=/var --disable-static
+ make
+}
+
+package() {
+ cd "${srcdir}/goffice-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}