wok view aspell-pt_BR/receipt @ rev 24326

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 27 12:16:00 2022 +0000 (2022-01-27)
parents 7585bf9ada8c
children 5f6c5106b1f5
line source
1 # SliTaz package receipt.
3 PACKAGE="aspell-pt_BR"
4 VERSION="20131030.12.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Brazilian aspell dictionary."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
11 SOURCE="aspell6-pt_BR"
12 TARBALL="$SOURCE-${VERSION//./-}.tar.bz2"
13 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/$TARBALL"
15 DEPENDS="aspell"
16 BUILD_DEPENDS="aspell-dev"
18 HOST_ARCH="i486 arm"
20 # What is the latest version available today?
21 current_version()
22 {
23 wget -O - $WEB_SITE 2>/dev/null | \
24 sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q"
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 ./configure &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/lib
39 cp -a $install/usr/lib/* $fs/usr/lib
40 }