wok annotate aspell-en/receipt @ rev 8460

Compling samba with -j1 now.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Feb 06 20:49:59 2011 +0000 (2011-02-06)
parents
children c4ec7f0fcfea
rev   line source
paul@2099 1 # SliTaz package receipt.
paul@2099 2
paul@2099 3 PACKAGE="aspell-en"
paul@2099 4 VERSION="6.0-0"
paul@2099 5 CATEGORY="system-tools"
paul@2099 6 SHORT_DESC="English aspell dictionary."
paul@2099 7 MAINTAINER="paul@slitaz.org"
paul@2099 8 DEPENDS="aspell"
paul@2099 9 BUILD_DEPENDS="aspell aspell-dev"
paul@2099 10 SOURCE="aspell6-en"
paul@2099 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
paul@2099 12 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
paul@2099 13 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/en/$TARBALL"
paul@2099 14
paul@2099 15 # Rules to configure and make the package.
paul@2099 16 compile_rules()
paul@2099 17 {
paul@2099 18 cd $src
paul@2099 19 ./configure && \
paul@2099 20 make && make DESTDIR=$PWD/_pkg install
paul@2099 21 }
paul@2099 22
paul@2099 23 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2099 24 genpkg_rules()
paul@2099 25 {
paul@2099 26 mkdir -p $fs/usr/lib
paul@2099 27 cp -a $_pkg/usr/lib/* $fs/usr/lib
paul@2099 28 }