wok annotate retty/receipt @ rev 22760

updated findutils (4.6.0 -> 4.7.0)
author Hans-G?nter Theisgen
date Fri Jan 24 17:10:12 2020 +0100 (2020-01-24)
parents
children ad8b9ff412d2
rev   line source
pascal@16768 1 # SliTaz package receipt.
pascal@16768 2
pascal@16768 3 PACKAGE="retty"
pascal@16768 4 VERSION="1.0"
pascal@16768 5 CATEGORY="system-tools"
pascal@16768 6 SHORT_DESC="Terminal attaching without screen"
pascal@16768 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@16768 8 LICENSE="GPL2"
pascal@16768 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@16768 10 WEB_SITE="http://pasky.or.cz/dev/retty/"
pascal@16768 11 WGET_URL="$WEB_SITE$TARBALL"
pascal@16768 12
pascal@16768 13 DEPENDS=""
pascal@16768 14 BUILD_DEPENDS=""
pascal@16768 15
pascal@16768 16 # Rules to configure and make the package.
pascal@16768 17 compile_rules()
pascal@16768 18 {
pascal@16768 19 make && strip *tty
pascal@16768 20 }
pascal@16768 21
pascal@16768 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@16768 23 genpkg_rules()
pascal@16768 24 {
pascal@16768 25 mkdir -p $fs/usr/bin
pascal@16768 26 cp -a $src/blindtty $fs/usr/bin
pascal@16768 27 cp -a $src/retty $fs/usr/bin
pascal@16768 28 }
pascal@16768 29