mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
814 B
Bash
24 lines
814 B
Bash
# $Id: PKGBUILD 19311 2008-11-20 06:32:16Z aaron $
|
|
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
|
|
|
pkgname=goffice
|
|
pkgver=0.6.5
|
|
pkgrel=2
|
|
pkgdesc="A library of document-centric objects and utilities built on top of GLib and Gtk+"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
depends=('libgnomeui>=2.24' 'libgsf-gnome>=1.14')
|
|
makedepends=('perlxml' 'pkgconfig' 'intltool')
|
|
optdepends=('libxml2' 'libsm' 'gtk2' 'popt')
|
|
url="http://www.gnome.org"
|
|
options=(!libtool)
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('ab0cf11995b7750f26112669cedf6707')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|