wok-next view testdisk/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents 7506b35e1c6f
children
line source
1 # SliTaz package receipt.
3 PACKAGE="testdisk"
4 VERSION="7.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Data recovery tools (testdisk + photorec)"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.cgsecurity.org/wiki/TestDisk"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://www.cgsecurity.org/$TARBALL"
14 BUILD_DEPENDS="e2fsprogs-dev ncurses-dev jpeg-dev ntfsprogs-dev ntfs-3g-dev"
16 compile_rules() {
17 sed -i 's/COLOR_RED/COLOR_YELLOW/' src/intrfn.c
19 ./configure \
20 --with-ntfs3g \
21 $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 DEPENDS="e2fsprogs ncurses jpeg krb5 zlib libcomerr3 ntfsprogs ntfs-3g"
30 SUGGESTED="btrfs-progs e2fsprogs f2fs-tools dosfstools mtools hfsutils \
31 hfsprogs jfsutils util-linux lvm2 nilfs-utils ntfsprogs reiser4progs \
32 reiserfsprogs xfsprogs"
33 TAGS="recovery rescue"
34 }