wok view hdparm/receipt @ rev 13369

Add: udevil (light automounter using udev) Let us mount devices via spacefm without systemd/udisks
author Christophe Lincoln <pankso@slitaz.org>
date Fri Sep 14 10:50:33 2012 +0200 (2012-09-14)
parents afdc481c3d97
children 7bb096863642
line source
1 # SliTaz package receipt.
3 PACKAGE="hdparm"
4 VERSION="9.37"
5 CATEGORY="system-tools"
6 SHORT_DESC="hdparm - get/set ATA/SATA drive parameters under Linux"
7 MAINTAINER="liupeng <hipeng@yahoo.com>"
8 DEPENDS="glibc"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://sourceforge.net/projects/hdparm/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 make && make DESTDIR=$PWD/_pkg install
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/sbin
24 cp -a $_pkg/sbin/hdparm $fs/sbin/
25 }