wok annotate ddrescue/receipt @ rev 22963

updated isync (1.3.0 -> 1.3.1)
author Hans-G?nter Theisgen
date Fri Feb 28 16:58:37 2020 +0100 (2020-02-28)
parents eb8067417980
children 5604c90d7b2c
rev   line source
erjo@621 1 # SliTaz package receipt.
erjo@621 2
erjo@621 3 PACKAGE="ddrescue"
Hans-G?nter@22637 4 VERSION="1.24"
erjo@621 5 CATEGORY="system-tools"
Hans-G?nter@22637 6 TAGS="recovery toolkit tools"
erjo@621 7 SHORT_DESC="Data recovery tool."
erjo@784 8 MAINTAINER="erjo@slitaz.org"
pascal@15579 9 LICENSE="GPL3"
Hans-G?nter@22637 10 WEB_SITE="https://www.gnu.org/software/ddrescue/"
Hans-G?nter@22637 11
Hans-G?nter@22637 12 TARBALL="$PACKAGE-$VERSION.tar.lz"
erjo@621 13 WGET_URL="http://ftp.gnu.org/gnu/ddrescue/$TARBALL"
erjo@621 14
pascal@15579 15 DEPENDS="gcc-lib-base"
Hans-G?nter@22637 16 BUILD_DEPENDS="lzip"
erjo@2958 17
erjo@621 18 # Rules to configure and make the package.
erjo@621 19 compile_rules()
erjo@621 20 {
Hans-G?nter@22637 21 ./configure \
Hans-G?nter@22637 22 --prefix=/usr \
Hans-G?nter@22637 23 --infodir=/usr/share/info \
Hans-G?nter@22637 24 --mandir=/usr/share/man \
Hans-G?nter@22637 25 $CONFIGURE_ARGS &&
pascal@5000 26 make &&
pascal@15579 27 make DESTDIR=$DESTDIR install
erjo@621 28 }
erjo@621 29
erjo@621 30 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@621 31 genpkg_rules()
erjo@621 32 {
erjo@621 33 mkdir -p $fs/usr
Hans-G?nter@22637 34 cp -a $install/usr/bin $fs/usr
erjo@621 35 }