wok annotate aspell-en/receipt @ rev 15579

Remove cromfs-or-squashfs; add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 10:06:29 2013 +0000 (2013-11-30)
parents c4ec7f0fcfea
children 128aae84d74c
rev   line source
paul@2099 1 # SliTaz package receipt.
paul@2099 2
paul@2099 3 PACKAGE="aspell-en"
slaxemulator@8529 4 VERSION="7.1-0"
paul@2099 5 CATEGORY="system-tools"
paul@2099 6 SHORT_DESC="English aspell dictionary."
paul@2099 7 MAINTAINER="paul@slitaz.org"
pascal@15361 8 LICENSE="PublicDomain"
paul@2099 9 SOURCE="aspell6-en"
paul@2099 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
paul@2099 11 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
paul@2099 12 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/en/$TARBALL"
paul@2099 13
pascal@15361 14 DEPENDS="aspell"
pascal@15361 15 BUILD_DEPENDS="aspell aspell-dev"
pascal@15361 16
paul@2099 17 # Rules to configure and make the package.
paul@2099 18 compile_rules()
paul@2099 19 {
paul@2099 20 cd $src
paul@2099 21 ./configure && \
slaxemulator@8529 22 make && make DESTDIR=$DESTDIR install
paul@2099 23 }
paul@2099 24
paul@2099 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2099 26 genpkg_rules()
paul@2099 27 {
paul@2099 28 mkdir -p $fs/usr/lib
pascal@15361 29 cp -a $install/usr/lib/* $fs/usr/lib
paul@2099 30 }