wok view goffice/receipt @ rev 3974

dmraid: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 27 12:05:30 2009 +0200 (2009-08-27)
parents dbf873bf74a8
children 7a6f8a86cc97
line source
1 # SliTaz package receipt.
3 PACKAGE="goffice"
4 VERSION="0.6.5"
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"
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.6/$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 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 cp -a $_pkg/usr/lib/goffice $fs/usr/lib
33 cp -a $_pkg/usr/share/goffice $fs/usr/share
34 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
35 }