wok annotate aspell-it/receipt @ rev 18917
Up: Correct link.
author | Leonardo Laporte <hackdorte@sapo.pt> |
---|---|
date | Wed Feb 24 08:39:49 2016 -0300 (2016-02-24) |
parents | ca310437a4a4 |
children | 1f42ec33c572 |
rev | line source |
---|---|
erjo@4716 | 1 # SliTaz package receipt. |
erjo@4716 | 2 |
erjo@4716 | 3 PACKAGE="aspell-it" |
erjo@4716 | 4 VERSION="2.2_20050523-0" |
erjo@4716 | 5 CATEGORY="system-tools" |
erjo@4716 | 6 SHORT_DESC="Italian aspell dictionary." |
erjo@4716 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15361 | 8 LICENSE="GPL2" |
erjo@4716 | 9 SOURCE="aspell6-it" |
erjo@4716 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
erjo@4716 | 11 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html" |
erjo@4716 | 12 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/it/$TARBALL" |
erjo@4716 | 13 |
pascal@15361 | 14 DEPENDS="aspell" |
pascal@15361 | 15 BUILD_DEPENDS="aspell aspell-dev" |
pascal@15361 | 16 |
erjo@4716 | 17 # Rules to configure and make the package. |
erjo@4716 | 18 compile_rules() |
erjo@4716 | 19 { |
erjo@4716 | 20 cd $src |
erjo@4716 | 21 ./configure && \ |
pascal@15361 | 22 make && make DESTDIR=$DESTDIR install |
erjo@4716 | 23 } |
erjo@4716 | 24 |
erjo@4716 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@4716 | 26 genpkg_rules() |
erjo@4716 | 27 { |
erjo@4716 | 28 mkdir -p $fs/usr/lib |
pascal@15361 | 29 cp -a $install/usr/lib/* $fs/usr/lib |
erjo@4716 | 30 } |
erjo@4716 | 31 |