wok view aspell-id/receipt @ rev 25686
Use System category for pm-suspend entry
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Sat Apr 06 12:03:22 2024 +0200 (7 months ago) |
parents | 5f6c5106b1f5 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="aspell-id"
4 VERSION="1.2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Indonesian aspell dictionary."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://ftp.gnu.org/gnu/aspell/dict/0index.html"
11 SOURCE="aspell5-id"
12 TARBALL="$SOURCE-${VERSION%.*}-${VERSION##*.}.tar.bz2"
13 WGET_URL="https://ftp.gnu.org/gnu/aspell/dict/id/$TARBALL"
15 DEPENDS="aspell"
16 BUILD_DEPENDS="aspell aspell-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | \
22 sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;s|-|.|g;q"
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure &&
29 make &&
30 make install DESTDIR=$DESTDIR
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cook_copy_folders lib
37 }