wok annotate aspell-es/receipt @ rev 25691

Up lynis (3.1.1), ncurses-examples (20211021)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 16 10:43:04 2024 +0000 (6 weeks ago)
parents 5f6c5106b1f5
children
rev   line source
paul@2110 1 # SliTaz package receipt.
paul@2110 2
paul@2110 3 PACKAGE="aspell-es"
slaxemulator@7385 4 VERSION="1.11"
paul@2110 5 CATEGORY="system-tools"
paul@2110 6 SHORT_DESC="Spanish aspell dictionary."
paul@2110 7 MAINTAINER="paul@slitaz.org"
pascal@15361 8 LICENSE="GPL2"
paul@2110 9 SOURCE="aspell6-es"
slaxemulator@7385 10 TARBALL="$SOURCE-$VERSION-2.tar.bz2"
pascal@25539 11 WEB_SITE="https://ftp.gnu.org/gnu/aspell/dict/0index.html"
pascal@25539 12 WGET_URL="https://ftp.gnu.org/gnu/aspell/dict/es/$TARBALL"
pankso@16248 13 HOST_ARCH="i486 arm"
paul@2110 14
pascal@15361 15 DEPENDS="aspell"
pankso@16248 16 BUILD_DEPENDS="aspell-dev"
pascal@15361 17
pascal@24326 18 # What is the latest version available today?
pascal@24326 19 current_version()
pascal@24326 20 {
pascal@24326 21 wget -O - $WEB_SITE 2>/dev/null | \
pascal@24340 22 sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;s|-|.|g;q"
pascal@24326 23 }
pascal@24326 24
paul@2110 25 # Rules to configure and make the package.
paul@2110 26 compile_rules()
paul@2110 27 {
pankso@16248 28 ./configure &&
pankso@16248 29 make && make install
paul@2110 30 }
paul@2110 31
paul@2110 32 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2110 33 genpkg_rules()
paul@2110 34 {
paul@2110 35 mkdir -p $fs/usr/lib
pascal@15361 36 cp -a $install/usr/lib/* $fs/usr/lib
paul@2110 37 }