wok-current annotate aspell-fr/receipt @ rev 25539
Up perl-test-compile (3.1.0)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 09 12:11:13 2023 +0000 (22 months ago) |
parents | 095836df71b7 |
children |
rev | line source |
---|---|
paul@2100 | 1 # SliTaz package receipt. |
paul@2100 | 2 |
paul@2100 | 3 PACKAGE="aspell-fr" |
paul@2100 | 4 VERSION="0.50-3" |
paul@2100 | 5 CATEGORY="system-tools" |
paul@2100 | 6 SHORT_DESC="French aspell dictionary." |
paul@2100 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15361 | 8 LICENSE="GPL2" |
paul@2100 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@25539 | 10 WEB_SITE="https://ftp.gnu.org/gnu/aspell/dict/0index.html" |
pascal@25539 | 11 WGET_URL="https://ftp.gnu.org/gnu/aspell/dict/fr/$TARBALL" |
pankso@16248 | 12 HOST_ARCH="i486 arm" |
paul@2100 | 13 |
pascal@15361 | 14 DEPENDS="aspell" |
pankso@16248 | 15 BUILD_DEPENDS="aspell-dev" |
pascal@15361 | 16 |
pascal@24326 | 17 # What is the latest version available today? |
pascal@24326 | 18 current_version() |
pascal@24326 | 19 { |
pascal@24326 | 20 wget -O - $WEB_SITE 2>/dev/null | \ |
pascal@24326 | 21 sed "/$PACKAGE/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|;q" |
pascal@24326 | 22 } |
pascal@24326 | 23 |
paul@2100 | 24 # Rules to configure and make the package. |
paul@2100 | 25 compile_rules() |
paul@2100 | 26 { |
pascal@15361 | 27 ./configure && |
pankso@16248 | 28 make && make install |
paul@2100 | 29 } |
paul@2100 | 30 |
paul@2100 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@2100 | 32 genpkg_rules() |
paul@2100 | 33 { |
paul@2100 | 34 mkdir -p $fs/usr/lib |
pascal@15361 | 35 cp -a $install/usr/lib/* $fs/usr/lib |
paul@2100 | 36 } |