wok view aspell-sl/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 5075d5ce24d0
children c3a6f662a1c1
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|;s|-|.|g;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 }