wok annotate aspell-nl/receipt @ rev 18558
btrfs-progs: update deps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Nov 08 14:25:50 2015 +0100 (2015-11-08) |
parents | beb52b40ec13 |
children | 095836df71b7 |
rev | line source |
---|---|
paul@7225 | 1 # SliTaz package receipt. |
paul@7225 | 2 |
paul@7225 | 3 PACKAGE="aspell-nl" |
paul@7225 | 4 VERSION="0.50-2" |
paul@7225 | 5 CATEGORY="system-tools" |
paul@7225 | 6 SHORT_DESC="Dutch aspell dictionary." |
paul@7225 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15361 | 8 LICENSE="GPL" |
paul@7225 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
paul@7225 | 10 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html" |
paul@7225 | 11 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/nl/$TARBALL" |
paul@7225 | 12 |
pascal@15361 | 13 DEPENDS="aspell" |
pascal@15361 | 14 BUILD_DEPENDS="aspell aspell-dev" |
pascal@15361 | 15 |
paul@7225 | 16 # Rules to configure and make the package. |
paul@7225 | 17 compile_rules() |
paul@7225 | 18 { |
paul@7225 | 19 cd $src |
paul@7225 | 20 ./configure && \ |
pascal@15361 | 21 make && make DESTDIR=$DESTDIR install |
paul@7225 | 22 } |
paul@7225 | 23 |
paul@7225 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@7225 | 25 genpkg_rules() |
paul@7225 | 26 { |
paul@7225 | 27 mkdir -p $fs/usr |
pascal@15361 | 28 cp -a $install/usr/lib $fs/usr |
paul@7225 | 29 } |
paul@7225 | 30 |