wok view aspell/receipt @ rev 15781

linux: remove kmod dep
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 13 00:02:35 2014 +0100 (2014-01-13)
parents 395ec8205cff
children 128aae84d74c
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 LICENSE="LGPL2"
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 DEPENDS="ncurses gcc-lib-base"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/usr/share/locale
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 cp -a $install/usr/lib/aspell* $fs/usr/lib
33 for i in de es pt_BR; do
34 cp -a $install/usr/share/locale/$i $fs/usr/share/locale
35 done
37 # Remove unneeded files
38 rm -f $fs/usr/lib/aspell*/*.*a
39 }