wok annotate aspell-es/receipt @ rev 8657

Up: libtaz 0.0.6.1; tazwok 0.0.6.2
author Antoine Bodin <gokhlayeh@slitaz.org>
date Wed Feb 16 05:30:50 2011 +0100 (2011-02-16)
parents 91149853c647
children be13f25e790b
rev   line source
paul@2110 1 # SliTaz package receipt.
paul@2110 2
paul@2110 3 PACKAGE="aspell-es"
slaxemulator@7385 4 VERSION="1.11"
paul@2110 5 CATEGORY="system-tools"
paul@2110 6 SHORT_DESC="Spanish aspell dictionary."
paul@2110 7 MAINTAINER="paul@slitaz.org"
paul@2110 8 DEPENDS="aspell"
paul@2110 9 BUILD_DEPENDS="aspell aspell-dev"
paul@2110 10 SOURCE="aspell6-es"
slaxemulator@7385 11 TARBALL="$SOURCE-$VERSION-2.tar.bz2"
paul@2110 12 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
paul@2110 13 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/es/$TARBALL"
paul@2110 14
paul@2110 15 # Rules to configure and make the package.
paul@2110 16 compile_rules()
paul@2110 17 {
slaxemulator@7385 18 src=$WOK/$PACKAGE/$SOURCE-$VERSION-2
paul@2110 19 cd $src
paul@2110 20 ./configure && \
paul@2110 21 make && make DESTDIR=$PWD/_pkg install
paul@2110 22 }
paul@2110 23
paul@2110 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2110 25 genpkg_rules()
paul@2110 26 {
slaxemulator@7385 27 _pkg=$WOK/$PACKAGE/$SOURCE-$VERSION-2/_pkg
paul@2110 28 mkdir -p $fs/usr/lib
paul@2110 29 cp -a $_pkg/usr/lib/* $fs/usr/lib
paul@2110 30 }