wok view abiword-plugins/receipt @ rev 3563

tag some a* receipts
author Rohit Joshi <jozee@slitaz.org>
date Wed Jun 24 18:47:14 2009 +0000 (2009-06-24)
parents 2407153fdf77
children 45c9d6e41e67
line source
1 # SliTaz package receipt.
3 PACKAGE="abiword-plugins"
4 VERSION="2.6.4"
5 CATEGORY="office"
6 SHORT_DESC="Extra plugins for Abiword (OpenDocument, Wikidepia, etc)."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="abiword libgio readline xorg-libXdamage fribidi"
9 BUILD_DEPENDS="abiword-dev fribidi"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.abisource.com/"
12 WGET_URL="http://www.abisource.com/downloads/abiword/$VERSION/source/$TARBALL"
13 TAGS="doc odf"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --with-abiword=$WOK/abiword/abiword-$VERSION \
24 --disable-abicollab \
25 --disable-librsvg \
26 --disable-docbook \
27 --disable-OpenXML \
28 --disable-wordperfect \
29 --disable-xhtml \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$src/_pkg install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/lib/abiword-2.6/plugins $fs/usr/share
39 cp -a $_pkg/usr/lib/abiword-2.6/plugins/*.so \
40 $fs/usr/lib/abiword-2.6/plugins
41 cp -a $_pkg/usr/share/abiword-2.6 $fs/usr/share
42 }