wok-6.x annotate aspell/receipt @ rev 22520
updated audit and audit-dev (2.8.4 -> 2.8.5)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jan 02 10:00:30 2020 +0100 (2020-01-02) |
parents | 24a8f373c227 |
children | 095836df71b7 |
rev | line source |
---|---|
paul@2098 | 1 # SliTaz package receipt. |
paul@2098 | 2 |
paul@2098 | 3 PACKAGE="aspell" |
Hans-G?nter@22495 | 4 VERSION="0.60.8" |
paul@2098 | 5 CATEGORY="system-tools" |
Hans-G?nter@22495 | 6 TAGS="spell check" |
paul@2098 | 7 SHORT_DESC="GNU spell checker." |
paul@2098 | 8 MAINTAINER="paul@slitaz.org" |
pascal@15201 | 9 LICENSE="LGPL2" |
al@19275 | 10 WEB_SITE="http://aspell.net/" |
Hans-G?nter@20723 | 11 |
paul@2098 | 12 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@2098 | 13 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/$TARBALL" |
paul@2098 | 14 |
pankso@16248 | 15 DEPENDS="ncursesw" |
Hans-G?nter@22495 | 16 BUILD_DEPENDS="libtinfo ncursesw-dev" |
Hans-G?nter@22495 | 17 |
Hans-G?nter@22495 | 18 HOST_ARCH="i486 arm" |
pascal@15201 | 19 |
paul@2098 | 20 # Rules to configure and make the package. |
paul@2098 | 21 compile_rules() |
paul@2098 | 22 { |
pascal@17715 | 23 export LDFLAGS="$LDFLAGS -ltinfo" |
Hans-G?nter@20723 | 24 ./configure $CONFIGURE_ARGS && |
Hans-G?nter@20723 | 25 make && |
Hans-G?nter@20723 | 26 make install |
paul@2098 | 27 } |
paul@2098 | 28 |
paul@2098 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@2098 | 30 genpkg_rules() |
paul@2098 | 31 { |
pankso@16248 | 32 mkdir -p $fs/usr/lib |
Hans-G?nter@22495 | 33 |
Hans-G?nter@22495 | 34 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@22495 | 35 cp -a $install/usr/lib/*.so* $fs/usr/lib |
Hans-G?nter@22495 | 36 cp -a $install/usr/lib/aspell* $fs/usr/lib |
Hans-G?nter@22495 | 37 |
paul@2098 | 38 # Remove unneeded files |
Hans-G?nter@22495 | 39 rm -f $fs/usr/lib/aspell*/*.*a |
paul@2098 | 40 } |