wok diff abiword-plugins/receipt @ rev 996

Receipt for heirloom mailx
author Pierre-Jean Fichet <sygne@ombres.eu>
date Sun Jul 06 16:43:13 2008 +0200 (2008-07-06)
parents
children 25b50c3dbac7
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/abiword-plugins/receipt	Sun Jul 06 16:43:13 2008 +0200
     1.3 @@ -0,0 +1,42 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="abiword-plugins"
     1.7 +VERSION="2.6.3"
     1.8 +CATEGORY="office"
     1.9 +SHORT_DESC="Extra plugins for Abiword (OpenDocument, Wikidepia, etc)."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="abiword"
    1.12 +BUILD_DEPENDS="abiword-dev"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://www.abisource.com/"
    1.15 +WGET_URL="http://www.abisource.com/downloads/abiword/$VERSION/source/$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 +		--infodir=/usr/share/info \
    1.24 +		--mandir=/usr/share/man \
    1.25 +		--with-abiword=$WOK/abiword/abiword-$VERSION \
    1.26 +		--disable-abicollab \
    1.27 +		--disable-librsvg \
    1.28 +		--disable-docbook \
    1.29 +		--disable-OpenXML \
    1.30 +		--disable-wordperfect \
    1.31 +		--disable-xhtml \
    1.32 +		$CONFIGURE_ARGS
    1.33 +	make
    1.34 +	make DESTDIR=$src/_pkg install
    1.35 +}
    1.36 +
    1.37 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.38 +genpkg_rules()
    1.39 +{
    1.40 +	mkdir -p $fs/usr/lib/abiword-2.6/plugins $fs/usr/share
    1.41 +	cp -a $_pkg/usr/lib/abiword-2.6/plugins/*.so \
    1.42 +		$fs/usr/lib/abiword-2.6/plugins
    1.43 +	cp -a $_pkg/usr/share/abiword-2.6 $fs/usr/share
    1.44 +}
    1.45 +