wok view magicrescue/receipt @ rev 22962

updated isomaster (1.3.14 -> 1.3.15)
author Hans-G?nter Theisgen
date Fri Feb 28 16:53:45 2020 +0100 (2020-02-28)
parents e8c84b81fa04
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="magicrescue"
4 VERSION="1.1.10"
5 CATEGORY="utilities"
6 SHORT_DESC="Find and recover deleted files on block devices."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/jbj/magicrescue/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/jbj/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS="perl"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i 's|/man/|/share&|' Makefile*
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/share/magicrescue $fs/usr/share
34 }