wok-current annotate hfsprescue/receipt @ rev 25721
Update slitaz-i18n for gnumeric
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Tue Jun 18 11:25:19 2024 +0000 (4 months ago) |
parents | af8d823a3077 |
children |
rev | line source |
---|---|
pascal@16073 | 1 # SliTaz package receipt. |
pascal@16073 | 2 |
pascal@16073 | 3 PACKAGE="hfsprescue" |
Hans-G?nter@24642 | 4 VERSION="3.5" |
pascal@16073 | 5 CATEGORY="base-system" |
pascal@16073 | 6 SHORT_DESC="HFS+ recovery tool." |
pascal@16073 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@16073 | 8 LICENSE="GPL2" |
Hans-G?nter@24642 | 9 WEB_SITE="https://www.plop.at/en/hfsprescue.html" |
pascal@16073 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@24642 | 11 WGET_URL="https://download.plop.at/$PACKAGE/$TARBALL" |
pascal@16073 | 12 |
Hans-G?nter@24642 | 13 DEPENDS="libcrypto zlib" |
pascal@21862 | 14 BUILD_DEPENDS="openssl-dev" |
pascal@16073 | 15 |
pascal@24445 | 16 # What is the latest version available today? |
pascal@24445 | 17 current_version() |
pascal@24445 | 18 { |
pascal@24445 | 19 wget -O - https://www.plop.at/en/hfsprescue/download.html 2>/dev/null | \ |
pascal@24445 | 20 sed '/hfsprescue-[0-9]/!d;/tar/!d;/precompiled/d;s|.*hfsprescue-||;s|.tar.*||;q' |
pascal@24445 | 21 } |
pascal@24445 | 22 |
pascal@16073 | 23 # Rules to configure and make the package. |
pascal@16073 | 24 compile_rules() |
pascal@16073 | 25 { |
Hans-G?nter@24642 | 26 ./configure \ |
Hans-G?nter@24642 | 27 --prefix=/usr \ |
Hans-G?nter@24642 | 28 --infodir=/usr/share/info \ |
Hans-G?nter@24642 | 29 --mandir=/usr/share/man \ |
Hans-G?nter@24642 | 30 $CONFIGURE_ARGS && |
pascal@16073 | 31 make && |
Hans-G?nter@24642 | 32 make install DESTDIR=$DESTDIR |
pascal@16073 | 33 } |
pascal@16073 | 34 |
pascal@16073 | 35 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@16073 | 36 genpkg_rules() |
pascal@16073 | 37 { |
Hans-G?nter@24642 | 38 cook_copy_folders bin |
pascal@16073 | 39 } |