wok annotate aspell-ru/receipt @ rev 25694
dropbear: typo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Apr 21 14:12:01 2024 +0000 (6 months ago) |
parents | 5f6c5106b1f5 |
children |
rev | line source |
---|---|
erjo@4716 | 1 # SliTaz package receipt. |
erjo@4716 | 2 |
erjo@4716 | 3 PACKAGE="aspell-ru" |
Hans-G?nter@24328 | 4 VERSION="0.99f7.1" |
erjo@4716 | 5 CATEGORY="system-tools" |
erjo@4716 | 6 SHORT_DESC="Russian aspell dictionary." |
erjo@4716 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15361 | 8 LICENSE="other" |
pascal@25539 | 9 WEB_SITE="https://ftp.gnu.org/gnu/aspell/dict/0index.html" |
Hans-G?nter@24328 | 10 |
erjo@4716 | 11 SOURCE="aspell6-ru" |
Hans-G?nter@24328 | 12 TARBALL="$SOURCE-${VERSION%.*}-${VERSION##*.}.tar.bz2" |
pascal@25539 | 13 WGET_URL="https://ftp.gnu.org/gnu/aspell/dict/ru/$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@24340 | 22 sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;s|-|.|g;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@24328 | 28 ./configure && |
Hans-G?nter@24328 | 29 make && |
Hans-G?nter@24328 | 30 make install DESTDIR=$DESTDIR |
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 { |
Hans-G?nter@24328 | 36 cook_copy_folders lib |
erjo@4716 | 37 } |