wok view goffice/receipt @ rev 5719

Up dmsetup
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 24 15:08:46 2010 +0200 (2010-06-24)
parents 7a6f8a86cc97
children e28130ae7dac
line source
1 # SliTaz package receipt.
3 PACKAGE="goffice"
4 VERSION="0.8.3"
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 &&
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 }