wok-next diff setserial/receipt @ rev 21313

updated iperf (2.0.5 -> 3.7)
author Hans-G?nter Theisgen
date Tue Dec 10 16:12:48 2019 +0100 (2019-12-10)
parents d6378d455338
children
line diff
     1.1 --- a/setserial/receipt	Thu May 10 21:12:00 2018 +0300
     1.2 +++ b/setserial/receipt	Tue Dec 10 16:12:48 2019 +0100
     1.3 @@ -3,28 +3,23 @@
     1.4  PACKAGE="setserial"
     1.5  VERSION="2.17"
     1.6  CATEGORY="system-tools"
     1.7 -SHORT_DESC="Serial port configutation tool."
     1.8 +SHORT_DESC="Serial port configutation tool"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="GPL"
    1.11  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12  WEB_SITE="http://setserial.sourceforge.net/"
    1.13  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.14  
    1.15 -# Rules to configure and make the package.
    1.16 -compile_rules()
    1.17 -{
    1.18 -	mkdir -p $DESTDIR/usr/bin
    1.19 -	
    1.20 +compile_rules() {
    1.21 +	mkdir -p $install/usr/bin
    1.22 +
    1.23  	./configure \
    1.24  		--prefix=/usr \
    1.25  		$CONFIGURE_ARGS &&
    1.26  	make $PACKAGE &&
    1.27 -	install -m 755 $PACKAGE $DESTDIR/usr/bin
    1.28 +	install -m 755 $PACKAGE $install/usr/bin
    1.29  }
    1.30  
    1.31 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 -genpkg_rules()
    1.33 -{
    1.34 +genpkg_rules() {
    1.35  	cp -a $install/usr $fs
    1.36  }
    1.37 -