wok annotate rhash/receipt @ rev 23955

Add rhash
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 26 09:25:55 2020 +0000 (2020-09-26)
parents
children e919c5a2742d
rev   line source
pascal@23955 1 # SliTaz package receipt.
pascal@23955 2
pascal@23955 3 PACKAGE="rhash"
pascal@23955 4 VERSION="1.4.0"
pascal@23955 5 CATEGORY="misc"
pascal@23955 6 SHORT_DESC="Compute and verify hash sums of files"
pascal@23955 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@23955 8 LICENSE="BSD"
pascal@23955 9 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
pascal@23955 10 WEB_SITE="https://sourceforge.net/projects/rhash/"
pascal@23955 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@23955 12 TAGS="ed2k bthi magnet"
pascal@23955 13
pascal@23955 14 # Rules to configure and make the package.
pascal@23955 15 compile_rules()
pascal@23955 16 {
pascal@23955 17 ./configure --prefix=/usr --sysconfdir=/etc &&
pascal@23955 18 make &&
pascal@23955 19 make DESTDIR=$DESTDIR install
pascal@23955 20 }
pascal@23955 21
pascal@23955 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@23955 23 genpkg_rules()
pascal@23955 24 {
pascal@23955 25 mkdir -p $fs/usr
pascal@23955 26 cp -a $install/usr/bin $fs/usr
pascal@23955 27 cp -a $install/usr/lib $fs/usr
pascal@23955 28 cp -a $install/etc $fs
pascal@23955 29 }