wok diff hdparm/receipt @ rev 15924

ntp: avoid refection attacks
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 19 09:17:04 2014 +0000 (2014-02-19)
parents ebf45342566b
children 8d64ce80ab95
line diff
     1.1 --- a/hdparm/receipt	Wed Nov 16 11:55:27 2011 +0800
     1.2 +++ b/hdparm/receipt	Wed Feb 19 09:17:04 2014 +0000
     1.3 @@ -5,22 +5,24 @@
     1.4  CATEGORY="system-tools"
     1.5  SHORT_DESC="hdparm - get/set ATA/SATA drive parameters under Linux"
     1.6  MAINTAINER="liupeng <hipeng@yahoo.com>"
     1.7 -DEPENDS="glibc"
     1.8 +LICENSE="BSD"
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WEB_SITE="http://sourceforge.net/projects/hdparm/"
    1.11  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.12  
    1.13 +DEPENDS="glibc"
    1.14 +
    1.15  # Rules to configure and make the package.
    1.16  compile_rules()
    1.17  {
    1.18  	cd $src
    1.19 -	make && make DESTDIR=$PWD/_pkg install
    1.20 +	make && make DESTDIR=$DESTDIR install
    1.21  }
    1.22  
    1.23  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.24  genpkg_rules()
    1.25  {
    1.26  	mkdir -p $fs/sbin
    1.27 -	cp -a $_pkg/sbin/hdparm $fs/sbin/
    1.28 +	cp -a $install/sbin/hdparm $fs/sbin/
    1.29  }
    1.30