wok-stable annotate aspell-cs/receipt @ rev 7987
Fix patchs for make
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Mon Jan 17 23:42:01 2011 +0100 (2011-01-17) |
parents | |
children |
rev | line source |
---|---|
erjo@4716 | 1 # SliTaz package receipt. |
erjo@4716 | 2 |
erjo@4716 | 3 PACKAGE="aspell-cs" |
erjo@4716 | 4 VERSION="20040614-1" |
erjo@4716 | 5 CATEGORY="system-tools" |
erjo@4716 | 6 SHORT_DESC="Czech aspell dictionary." |
erjo@4716 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@4716 | 8 DEPENDS="aspell" |
erjo@4716 | 9 BUILD_DEPENDS="aspell aspell-dev" |
erjo@4716 | 10 SOURCE="aspell6-cs" |
erjo@4716 | 11 TARBALL="$SOURCE-$VERSION.tar.bz2" |
erjo@4716 | 12 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html" |
erjo@4716 | 13 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/cs/$TARBALL" |
erjo@4716 | 14 |
erjo@4716 | 15 # Rules to configure and make the package. |
erjo@4716 | 16 compile_rules() |
erjo@4716 | 17 { |
erjo@4716 | 18 cd $src |
erjo@4716 | 19 ./configure && \ |
erjo@4716 | 20 make && make DESTDIR=$PWD/_pkg install |
erjo@4716 | 21 } |
erjo@4716 | 22 |
erjo@4716 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@4716 | 24 genpkg_rules() |
erjo@4716 | 25 { |
erjo@4716 | 26 mkdir -p $fs/usr/lib |
erjo@4716 | 27 cp -a $_pkg/usr/lib/* $fs/usr/lib |
erjo@4716 | 28 } |
erjo@4716 | 29 |