wok-current annotate aspell/receipt @ rev 2098
Add: aspell
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Wed Jan 28 19:56:00 2009 +0000 (2009-01-28) |
parents | |
children | ff607e8ddd3e |
rev | line source |
---|---|
paul@2098 | 1 # SliTaz package receipt. |
paul@2098 | 2 |
paul@2098 | 3 PACKAGE="aspell" |
paul@2098 | 4 VERSION="0.60.6" |
paul@2098 | 5 CATEGORY="system-tools" |
paul@2098 | 6 SHORT_DESC="GNU spell checker." |
paul@2098 | 7 MAINTAINER="paul@slitaz.org" |
paul@2098 | 8 DEPENDS="" |
paul@2098 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@2098 | 10 WEB_SITE="http://aspell.net/" |
paul@2098 | 11 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/$TARBALL" |
paul@2098 | 12 |
paul@2098 | 13 # Rules to configure and make the package. |
paul@2098 | 14 compile_rules() |
paul@2098 | 15 { |
paul@2098 | 16 cd $src |
paul@2098 | 17 ./configure --prefix=/usr --infodir=/usr/share/info \ |
paul@2098 | 18 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
paul@2098 | 19 make && make DESTDIR=$PWD/_pkg install |
paul@2098 | 20 } |
paul@2098 | 21 |
paul@2098 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@2098 | 23 genpkg_rules() |
paul@2098 | 24 { |
paul@2098 | 25 mkdir -p $fs/usr/lib |
paul@2098 | 26 cp -a $_pkg/usr/bin $fs/usr |
paul@2098 | 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
paul@2098 | 28 cp -a $_pkg/usr/lib/aspell* $fs/usr/lib |
paul@2098 | 29 # Remove unneeded files |
paul@2098 | 30 rm -f $fs/usr/lib/aspell*/*.*a |
paul@2098 | 31 } |
paul@2098 | 32 |