wok diff goffice/receipt @ rev 715

Up: slitaz-configs (2.0) - Include now Openbox default files and slim theme
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 02 20:41:41 2008 +0200 (2008-05-02)
parents
children ef616884d9ee
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/goffice/receipt	Fri May 02 20:41:41 2008 +0200
     1.3 @@ -0,0 +1,36 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="goffice"
     1.7 +VERSION="0.6.2"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="GOffice is a library of document-centric objects and utilities."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="gtk+ libgsf libglade"
    1.12 +BUILD_DEPENDS="gtk+-dev libgsf-dev libglade-dev"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://freshmeat.net/projects/goffice/"
    1.15 +WGET_URL="http://freshmeat.net/redir/goffice/58291/url_tgz/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	./configure \
    1.22 +		--prefix=/usr \
    1.23 +		--mandir=/usr/share/man \
    1.24 +		--with-html-dir=/usr/share/doc \
    1.25 +		$CONFIGURE_ARGS
    1.26 +	make
    1.27 +	make DESTDIR=$PWD/_pkg install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr/lib $fs/usr/share
    1.34 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.35 +	cp -a $_pkg/usr/lib/goffice $fs/usr/lib
    1.36 +	cp -a $_pkg/usr/share/goffice $fs/usr/share
    1.37 +	cp -a $_pkg/usr/share/pixmaps $fs/usr/share
    1.38 +}
    1.39 +