wok-current annotate aspell-pt_PT/receipt @ rev 25713

Up abiword (3.0.5), libwmf (0.2.13), fix wv url
author Stanislas Leduc <shann@slitaz.org>
date Fri Jun 14 11:35:21 2024 +0000 (3 months ago)
parents 5f6c5106b1f5
children
rev   line source
paul@2112 1 # SliTaz package receipt.
paul@2112 2
paul@2112 3 PACKAGE="aspell-pt_PT"
Hans-G?nter@22503 4 VERSION="20190329.1.0"
paul@2112 5 CATEGORY="system-tools"
paul@2112 6 SHORT_DESC="Portuguese aspell dictionary."
paul@2112 7 MAINTAINER="paul@slitaz.org"
pascal@15361 8 LICENSE="GPL2"
pascal@25539 9 WEB_SITE="https://ftp.gnu.org/gnu/aspell/dict/0index.html"
Hans-G?nter@22503 10
paul@2112 11 SOURCE="aspell6-pt_PT"
Hans-G?nter@22503 12 TARBALL="$SOURCE-${VERSION//./-}.tar.bz2"
pascal@25539 13 WGET_URL="https://ftp.gnu.org/gnu/aspell/dict/pt_PT/$TARBALL"
paul@2112 14
pascal@15361 15 DEPENDS="aspell"
pascal@15361 16 BUILD_DEPENDS="aspell 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@2112 25 # Rules to configure and make the package.
paul@2112 26 compile_rules()
paul@2112 27 {
Hans-G?nter@22503 28 ./configure &&
Hans-G?nter@22503 29 make &&
Hans-G?nter@22503 30 make DESTDIR=$DESTDIR install
paul@2112 31 }
paul@2112 32
paul@2112 33 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2112 34 genpkg_rules()
paul@2112 35 {
paul@2112 36 mkdir -p $fs/usr/lib
Hans-G?nter@22503 37 cp -a $install/usr/lib/* $fs/usr/lib
paul@2112 38 }