wok-6.x annotate aspell-de/receipt @ rev 25322
cpige: remove -static
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jul 22 07:58:08 2022 +0000 (2022-07-22) |
parents | 095836df71b7 |
children | c3a6f662a1c1 |
rev | line source |
---|---|
paul@2109 | 1 # SliTaz package receipt. |
paul@2109 | 2 |
paul@2109 | 3 PACKAGE="aspell-de" |
Hans-G?nter@22496 | 4 VERSION="20161207.7.0" |
paul@2109 | 5 CATEGORY="system-tools" |
paul@2109 | 6 SHORT_DESC="German aspell dictionary." |
paul@2109 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15361 | 8 LICENSE="GPL2" |
Hans-G?nter@22496 | 9 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html" |
Hans-G?nter@22496 | 10 |
paul@2109 | 11 SOURCE="aspell6-de" |
Hans-G?nter@22496 | 12 TARBALL="$SOURCE-${VERSION//./-}.tar.bz2" |
paul@2109 | 13 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/de/$TARBALL" |
paul@2109 | 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@2109 | 25 # Rules to configure and make the package. |
paul@2109 | 26 compile_rules() |
paul@2109 | 27 { |
Hans-G?nter@22496 | 28 ./configure && |
Hans-G?nter@22496 | 29 make && |
Hans-G?nter@22496 | 30 make DESTDIR=$DESTDIR install |
paul@2109 | 31 } |
paul@2109 | 32 |
paul@2109 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@2109 | 34 genpkg_rules() |
paul@2109 | 35 { |
paul@2109 | 36 mkdir -p $fs/usr/lib |
Hans-G?nter@22496 | 37 cp -a $install/usr/lib/* $fs/usr/lib |
paul@2109 | 38 } |