wok view rhash/receipt @ rev 24031

updated dialog (1.3_20190211 -> 1.3_20210324)
author Hans-G?nter Theisgen
date Tue Apr 06 13:52:57 2021 +0100 (2021-04-06)
parents
children e919c5a2742d
line source
1 # SliTaz package receipt.
3 PACKAGE="rhash"
4 VERSION="1.4.0"
5 CATEGORY="misc"
6 SHORT_DESC="Compute and verify hash sums of files"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
10 WEB_SITE="https://sourceforge.net/projects/rhash/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="ed2k bthi magnet"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure --prefix=/usr --sysconfdir=/etc &&
18 make &&
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $install/usr/bin $fs/usr
27 cp -a $install/usr/lib $fs/usr
28 cp -a $install/etc $fs
29 }