wok view aspell/receipt @ rev 12811

Add bison, m4 and xz to ARM arch
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 20 03:09:06 2012 +0200 (2012-05-20)
parents f4fd0777003f
children f4c22f009037
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 gcc-lib-base"
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 }