wok view yeahconsole/receipt @ rev 25503

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