wok view abiword-plugins/receipt @ rev 3473

get-softmodem-driver: Add support for Smart Link modem
author Dominique Corbex <domcox@users.sourceforge.net>
date Tue Jun 16 21:41:05 2009 +0200 (2009-06-16)
parents e75b1d632d66
children 2bbc0ef3f1d2
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"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --with-abiword=$WOK/abiword/abiword-$VERSION \
23 --disable-abicollab \
24 --disable-librsvg \
25 --disable-docbook \
26 --disable-OpenXML \
27 --disable-wordperfect \
28 --disable-xhtml \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$src/_pkg install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib/abiword-2.6/plugins $fs/usr/share
38 cp -a $_pkg/usr/lib/abiword-2.6/plugins/*.so \
39 $fs/usr/lib/abiword-2.6/plugins
40 cp -a $_pkg/usr/share/abiword-2.6 $fs/usr/share
41 }