blob: 378041f4b86880903dc23612efdbdebb2c1ab301 (
plain)
1 # Description: Library of document-centric objects and utilities building on top of GLib and Gtk+
2 # URL: http://ftp.gnome.org/pub/gnome/sources/goffice
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: gtk glib librsvg
5
6 name=goffice
7 version=0.10
8 release=27
9 source=(http://ftp.gnome.org/pub/gnome/sources/${name}/${version}/${name}-${version}.${release}.tar.xz)
10
11 build() {
12 cd $name-$version.${release}
13
14 ./configure --prefix=/usr --disable-nls
15 make
16 make DESTDIR=$PKG install
17 }
|