wok view aspell-sl/receipt @ rev 24329

updated at (3.1.23 -> 3.2.2)
author Hans-G?nter Theisgen
date Thu Jan 27 14:44:44 2022 +0100 (2022-01-27)
parents 41a5254285d8
children 5f6c5106b1f5
line source
1 # SliTaz package receipt.
3 PACKAGE="aspell-sl"
4 VERSION="0.50.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Slovenian aspell dictionary."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
11 TARBALL="$PACKAGE-${VERSION%.*}-${VERSION##*.}.tar.bz2"
12 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/sl/$TARBALL"
14 DEPENDS="aspell"
15 BUILD_DEPENDS="aspell aspell-dev"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - $WEB_SITE 2>/dev/null | \
21 sed "/$PACKAGE/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|;q"
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./configure &&
28 make &&
29 make install DESTDIR=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cook_copy_folders lib
36 }