wok annotate aspell-fr/receipt @ rev 9619

Up: py3k to 3.2. Added CVE-2011-1521 security fix. Also added pyconfig.h to py3k so python3 works. Nothing depends on this package yet so updating it will not cause any problems.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Apr 18 15:39:33 2011 +0000 (2011-04-18)
parents
children 191b99ca9dc2
rev   line source
paul@2100 1 # SliTaz package receipt.
paul@2100 2
paul@2100 3 PACKAGE="aspell-fr"
paul@2100 4 VERSION="0.50-3"
paul@2100 5 CATEGORY="system-tools"
paul@2100 6 SHORT_DESC="French aspell dictionary."
paul@2100 7 MAINTAINER="paul@slitaz.org"
paul@2100 8 DEPENDS="aspell"
paul@2100 9 BUILD_DEPENDS="aspell aspell-dev"
paul@2100 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
paul@2100 11 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
paul@2100 12 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/fr/$TARBALL"
paul@2100 13
paul@2100 14 # Rules to configure and make the package.
paul@2100 15 compile_rules()
paul@2100 16 {
paul@2100 17 cd $src
paul@2100 18 ./configure && \
paul@2100 19 make && make DESTDIR=$PWD/_pkg install
paul@2100 20 }
paul@2100 21
paul@2100 22 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2100 23 genpkg_rules()
paul@2100 24 {
paul@2100 25 mkdir -p $fs/usr/lib
paul@2100 26 cp -a $_pkg/usr/lib/* $fs/usr/lib
paul@2100 27 }