wok view goffice/receipt @ rev 6153

Up: libcdio, libcdio-dev, libcdio-utils to 0.82.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Sep 09 20:36:57 2010 +0000 (2010-09-09)
parents 0ea24a127aa4
children 202460462db6
line source
1 # SliTaz package receipt.
3 PACKAGE="goffice"
4 VERSION="0.8.6"
5 CATEGORY="x-window"
6 SHORT_DESC="GOffice is a library of document-centric objects and utilities."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libgsf libglade libart_lgpl xorg-libXdamage"
9 BUILD_DEPENDS="gtk+-dev libgsf-dev libglade-dev intltool expat-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://freshmeat.net/projects/goffice/"
12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/goffice/0.8/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 --with-html-dir=/usr/share/doc \
22 --without-gconf \
23 $CONFIGURE_ARGS &&
24 make -j 4 &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/usr/share
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/lib/goffice $fs/usr/lib
34 cp -a $_pkg/usr/share/goffice $fs/usr/share
35 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
36 }