wok-stable view abiword/receipt @ rev 490

Up: slitaz-base-files (1.4) + slitaz-doc (1.2) to change slitaz release string
author Christophe Lincoln <pankso@slitaz.org>
date Sat Mar 22 16:58:02 2008 +0100 (2008-03-22)
parents 1b9baba948bb
children 7cf3cf69e7e4
line source
1 # SliTaz package receipt.
3 PACKAGE="abiword"
4 VERSION="2.4.6"
5 CATEGORY="office"
6 SHORT_DESC="Light and speed word processing application."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libgnomeprint libgnomeprintui libgnomecanvas fribidi libglade
9 popt libxml2 libart_lgpl"
10 BUILD_DEPENDS="gtk+-dev libgnomeprint-dev libgnomeprintui-dev libgnomecanvas-dev
11 fribidi-dev libglade-dev popt-dev libxml2-dev libart_lgpl-dev"
12 SUGGESTED="abiword-plugins"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WEB_SITE="http://www.abisource.com/"
15 WGET_URL="http://www.abisource.com/downloads/abiword/2.4.6/source/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src/abi
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 --enable-extra-optimization \
26 $CONFIGURE_ARGS
27 make
28 make DESTDIR=$src/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share/pixmaps
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/lib $fs/usr
37 cp -a $_pkg/usr/share/AbiSuite-* $fs/usr/share
38 # Non standard pixmap
39 cp $_pkg/usr/share/icons/abiword_48.png \
40 $fs/usr/share/pixmaps/abiword.png
41 }