wok annotate yeahconsole/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (16 months ago)
parents 5d53e8ccbc8d
children
rev   line source
paul@2873 1 # SliTaz package receipt.
paul@2873 2
paul@2873 3 PACKAGE="yeahconsole"
paul@2873 4 VERSION="0.3.4"
paul@2873 5 CATEGORY="utilities"
paul@2873 6 SHORT_DESC="Quake-like drop down terminal."
paul@2873 7 MAINTAINER="paul@slitaz.org"
pascal@15362 8 LICENSE="GPL2"
paul@2873 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@2873 10 WEB_SITE="http://phrat.de/yeahtools.html"
paul@2873 11 WGET_URL="http://phrat.de/$TARBALL"
jozee@4977 12 TAGS="terminal"
paul@2873 13
pascal@15362 14 DEPENDS="xterm"
pascal@15362 15 BUILD_DEPENDS="xorg-libX11-dev xorg-xproto"
pascal@15362 16
pascal@24304 17 # What is the latest version available today?
pascal@24304 18 current_version()
pascal@24304 19 {
pascal@24304 20 wget -O - http://phrat.de/downloads.html 2>/dev/null | \
pascal@24304 21 sed '/yeahconsole/!d;s|.*-||;s|.tar.*||;q'
pascal@24304 22 }
pascal@24304 23
paul@2873 24 # Rules to configure and make the package.
paul@2873 25 compile_rules()
paul@2873 26 {
al@17501 27 make
paul@2873 28 }
paul@2873 29
paul@2873 30 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2873 31 genpkg_rules()
paul@2873 32 {
paul@2873 33 mkdir -p $fs/usr/bin
paul@2873 34 cp $src/yeahconsole $fs/usr/bin
paul@2873 35 }