wok-next annotate enchant/receipt @ rev 3889
Add pyvnc2swf
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Aug 13 16:26:22 2009 +0200 (2009-08-13) |
parents | ecb146e32c08 |
children | 31c985a0bd3d |
rev | line source |
---|---|
pankso@571 | 1 # SliTaz package receipt. |
pankso@571 | 2 |
pankso@571 | 3 PACKAGE="enchant" |
pankso@571 | 4 VERSION="1.4.0" |
pankso@571 | 5 CATEGORY="x-window" |
pankso@571 | 6 SHORT_DESC="Enchant spell checking library." |
pankso@571 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@2879 | 8 DEPENDS="dbus dbus-glib glib" |
paul@2130 | 9 BUILD_DEPENDS="pkg-config glib glib-dev aspell aspell-dev" |
pankso@2879 | 10 SUGGESTED="aspell" |
pankso@571 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@571 | 12 WEB_SITE="http://www.abisource.com/projects/enchant/" |
pankso@571 | 13 WGET_URL="http://www.abisource.com/downloads/enchant/$VERSION/$TARBALL" |
pankso@571 | 14 |
pankso@571 | 15 # Rules to configure and make the package. |
pankso@571 | 16 compile_rules() |
pankso@571 | 17 { |
pankso@571 | 18 cd $src |
pankso@571 | 19 ./configure \ |
pankso@571 | 20 --prefix=/usr \ |
pankso@571 | 21 --mandir=/usr/share/man \ |
pascal@1439 | 22 $CONFIGURE_ARGS && |
pascal@1439 | 23 make && |
pankso@571 | 24 make DESTDIR=$PWD/_pkg install |
pankso@571 | 25 } |
pankso@571 | 26 |
pankso@571 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@571 | 28 genpkg_rules() |
pankso@571 | 29 { |
pankso@571 | 30 mkdir -p $fs/usr/lib $fs/usr/share |
pankso@571 | 31 cp -a $_pkg/usr/bin $fs/usr |
pankso@571 | 32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@571 | 33 cp -a $_pkg/usr/lib/enchant $fs/usr/lib |
pankso@571 | 34 rm $fs/usr/lib/enchant/*.*a |
pankso@571 | 35 cp -a $_pkg/usr/share/enchant $fs/usr/share |
pankso@571 | 36 } |
pankso@571 | 37 |