wok annotate aspell-it/receipt @ rev 24326

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 27 12:16:00 2022 +0000 (2022-01-27)
parents be83dfad13f3
children fb22330086d8
rev   line source
erjo@4716 1 # SliTaz package receipt.
erjo@4716 2
erjo@4716 3 PACKAGE="aspell-it"
Hans-G?nter@22500 4 VERSION="2.4-20070901-0"
erjo@4716 5 CATEGORY="system-tools"
erjo@4716 6 SHORT_DESC="Italian aspell dictionary."
erjo@4716 7 MAINTAINER="erjo@slitaz.org"
pascal@15361 8 LICENSE="GPL2"
pascal@24326 9 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
Hans-G?nter@22499 10
erjo@4716 11 SOURCE="aspell6-it"
erjo@4716 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
Hans-G?nter@22499 13 WGET_URL="$SF_MIRROR/linguistico/$TARBALL"
erjo@4716 14
pascal@15361 15 DEPENDS="aspell"
pascal@15361 16 BUILD_DEPENDS="aspell aspell-dev"
pascal@15361 17
pascal@24326 18 # What is the latest version available today?
pascal@24326 19 current_version()
pascal@24326 20 {
pascal@24326 21 wget -O - $WEB_SITE 2>/dev/null | \
pascal@24326 22 sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q"
pascal@24326 23 }
pascal@24326 24
erjo@4716 25 # Rules to configure and make the package.
erjo@4716 26 compile_rules()
erjo@4716 27 {
Hans-G?nter@22499 28 ./configure &&
Hans-G?nter@22499 29 make &&
Hans-G?nter@22499 30 make DESTDIR=$DESTDIR install
erjo@4716 31 }
erjo@4716 32
erjo@4716 33 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4716 34 genpkg_rules()
erjo@4716 35 {
erjo@4716 36 mkdir -p $fs/usr/lib
Hans-G?nter@22499 37 cp -a $install/usr/lib/* $fs/usr/lib
erjo@4716 38 }