wok view aspell-nl/receipt @ rev 25682

Up libqcow (20240308)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 24 18:25:46 2024 +0000 (2 months ago)
parents 5f6c5106b1f5
children
line source
1 # SliTaz package receipt.
3 PACKAGE="aspell-nl"
4 VERSION="0.50.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Dutch aspell dictionary."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://ftp.gnu.org/gnu/aspell/dict/0index.html"
11 TARBALL="$PACKAGE-${VERSION%.*}-${VERSION##*.}.tar.bz2"
12 WGET_URL="https://ftp.gnu.org/gnu/aspell/dict/nl/$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 }