wok-next diff retty/receipt @ rev 21527

updated bootchart (0.9 -> 1.20)
author Hans-G?nter Theisgen
date Fri Jun 19 15:06:45 2020 +0100 (2020-06-19)
parents ca382d0ab983
children
line diff
     1.1 --- a/retty/receipt	Tue Nov 07 09:53:36 2017 +0100
     1.2 +++ b/retty/receipt	Fri Jun 19 15:06:45 2020 +0100
     1.3 @@ -1,4 +1,4 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="retty"
     1.8  VERSION="1.0"
     1.9 @@ -6,24 +6,20 @@
    1.10  SHORT_DESC="Terminal attaching without screen"
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="http://pasky.or.cz/dev/retty/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16 -WEB_SITE="http://pasky.or.cz/dev/retty/"
    1.17  WGET_URL="$WEB_SITE$TARBALL"
    1.18  
    1.19 -DEPENDS=""
    1.20  BUILD_DEPENDS="perl"
    1.21  
    1.22 -# Rules to configure and make the package.
    1.23 -compile_rules()
    1.24 -{
    1.25 -	make && strip *tty
    1.26 +compile_rules() {
    1.27 +	make || return 1
    1.28 +
    1.29 +	install -Dm755 blindtty $install/usr/bin/blindtty
    1.30 +	install -Dm755 retty    $install/usr/bin/retty
    1.31  }
    1.32  
    1.33 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.34 -genpkg_rules()
    1.35 -{
    1.36 -	mkdir -p $fs/usr/bin
    1.37 -	cp -a $src/blindtty $fs/usr/bin
    1.38 -	cp -a $src/retty $fs/usr/bin
    1.39 +genpkg_rules() {
    1.40 +	copy @std
    1.41  }
    1.42 -