wok annotate dd_rescue/receipt @ rev 18794

emacs: improve site-start.el
author Lucas Levrel <llevrel@yahoo.fr>
date Thu Jan 07 22:13:24 2016 +0100 (2016-01-07)
parents a1c1d35d9f92
children 4501baba93df
rev   line source
erjo@621 1 # SliTaz package receipt.
erjo@621 2
erjo@621 3 PACKAGE="dd_rescue"
slaxemulator@6237 4 VERSION="1.22"
erjo@621 5 CATEGORY="system-tools"
erjo@621 6 SHORT_DESC="Block device copy tools."
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@15579 8 LICENSE="GPL2"
erjo@621 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@621 10 WEB_SITE="http://www.garloff.de/kurt/linux/ddrescue/"
erjo@621 11 WGET_URL="http://www.garloff.de/kurt/linux/ddrescue/$TARBALL"
erjo@621 12
pascal@15579 13 DEPENDS=""
pascal@15579 14
erjo@621 15 # Rules to configure and make the package.
erjo@621 16 compile_rules()
erjo@621 17 {
erjo@621 18 cd $src
erjo@621 19 make
erjo@621 20 }
erjo@621 21
erjo@621 22 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@621 23 genpkg_rules()
erjo@621 24 {
erjo@621 25 mkdir -p $fs/usr/bin
erjo@621 26 cp -a $src/dd_rescue $fs/usr/bin
erjo@621 27 }
erjo@621 28