wok view hdparm/receipt @ rev 25457

Normazile https://sourceforge.net/projects web_sites
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 23 08:28:09 2022 +0000 (19 months ago)
parents 7f6cddcf47fe
children 69e1e705f038
line source
1 # SliTaz package receipt.
3 PACKAGE="hdparm"
4 VERSION="9.63"
5 CATEGORY="system-tools"
6 SHORT_DESC="Get and set [S]ATA drive parameters under Linux."
7 MAINTAINER="lufeng369@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://sourceforge.net/projects/hdparm"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="glibc"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://sourceforge.net/projects/hdparm/files/hdparm/ 2>/dev/null | \
20 sed '/scope="row/!d;s|.*/hdparm-||;s|.tar.*||;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 make &&
27 make install DESTDIR=$DESTDIR
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cook_copy_folders sbin
34 }