wok annotate scrounge-ntfs/receipt @ rev 24985

Add python-future
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 10 07:46:58 2022 +0000 (2022-05-10)
parents 90a87813caa6
children
rev   line source
erjo@13476 1 # SliTaz package receipt.
erjo@13476 2
erjo@13476 3 PACKAGE="scrounge-ntfs"
erjo@13476 4 VERSION="0.9"
erjo@13476 5 CATEGORY="system-tools"
erjo@13476 6 SHORT_DESC="Data recovery program for NTFS file systems."
erjo@13476 7 MAINTAINER="erjo@slitaz.org"
pascal@15587 8 LICENSE="BSD"
pascal@20684 9 WEB_SITE="https://github.com/lcorbasson/scrounge-ntfs"
erjo@13476 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@13476 11 WGET_URL="http://thewalter.net/stef/software/scrounge/$TARBALL"
erjo@13476 12
erjo@13476 13 DEPENDS=""
erjo@13476 14 BUILD_DEPENDS=""
erjo@13476 15
pascal@24093 16 current_version()
pascal@24093 17 {
pascal@24093 18 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
pascal@24093 19 sed "/tar.gz/!d;s|.*$PACKAGE-||;s|.tar.*||;q"
pascal@24093 20 }
pascal@24093 21
erjo@13476 22 # Rules to configure and make the package.
erjo@13476 23 compile_rules()
erjo@13476 24 {
erjo@13476 25 ./configure $CONFIGURE_ARGS && make && make install
erjo@13476 26 }
erjo@13476 27
erjo@13476 28 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@13476 29 genpkg_rules()
erjo@13476 30 {
erjo@13476 31 mkdir -p $fs/usr
erjo@13476 32 cp -a $install/usr/sbin $fs/usr
erjo@13476 33 }