wok view aspell/receipt @ rev 4931

add TAGS a* receipts
author Rohit Joshi <jozee@slitaz.org>
date Tue Feb 16 10:51:34 2010 +0000 (2010-02-16)
parents 7a436db659a4
children 395ec8205cff
line source
1 # SliTaz package receipt.
3 PACKAGE="aspell"
4 VERSION="0.60.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU spell checker."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="ncurses"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://aspell.net/"
11 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/$TARBALL"
12 TAGS="spell check"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS && \
20 make && make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib $fs/usr/share/locale
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 cp -a $_pkg/usr/lib/aspell* $fs/usr/lib
31 for i in de es pt_BR; do
32 cp -a $_pkg/usr/share/locale/$i $fs/usr/share/locale
33 done
35 # Remove unneeded files
36 rm -f $fs/usr/lib/aspell*/*.*a
37 }