wok annotate ddrescue/receipt @ rev 21454
updated mlt-python-bindings (0.7.2 -> 6.14.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Apr 29 17:40:07 2019 +0100 (2019-04-29) |
parents | 02bbaa9d12ba |
children | 7deb257e1d83 |
rev | line source |
---|---|
erjo@621 | 1 # SliTaz package receipt. |
erjo@621 | 2 |
erjo@621 | 3 PACKAGE="ddrescue" |
slaxemulator@8250 | 4 VERSION="1.14" |
erjo@621 | 5 CATEGORY="system-tools" |
erjo@621 | 6 SHORT_DESC="Data recovery tool." |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15579 | 8 LICENSE="GPL3" |
erjo@2958 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@621 | 10 WEB_SITE="http://www.gnu.org/software/ddrescue/ddrescue.html" |
erjo@621 | 11 WGET_URL="http://ftp.gnu.org/gnu/ddrescue/$TARBALL" |
jozee@4934 | 12 TAGS="recovery toolkit tools" |
erjo@621 | 13 |
pascal@15579 | 14 DEPENDS="gcc-lib-base" |
erjo@2958 | 15 |
erjo@621 | 16 # Rules to configure and make the package. |
erjo@621 | 17 compile_rules() |
erjo@621 | 18 { |
erjo@621 | 19 cd $src |
erjo@621 | 20 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@5000 | 21 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@5000 | 22 make && |
pascal@15579 | 23 make DESTDIR=$DESTDIR install |
erjo@621 | 24 } |
erjo@621 | 25 |
erjo@621 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@621 | 27 genpkg_rules() |
erjo@621 | 28 { |
erjo@621 | 29 mkdir -p $fs/usr |
pascal@15579 | 30 cp -a $install/usr/bin $fs/usr |
erjo@621 | 31 } |
erjo@621 | 32 |