wok view tintin++/receipt @ rev 25469

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 07 09:15:33 2022 +0000 (19 months ago)
parents b5bcdb59cf13
children 0262035dc1e7
line source
1 # SliTaz package receipt.
3 PACKAGE="tintin++"
4 VERSION="2.02.20"
5 CATEGORY="games"
6 SHORT_DESC="Terminal-based MUD client."
7 MAINTAINER="samuel_trassare@yahoo.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/scandum/tintin"
11 SOURCE="tintin"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
15 DEPENDS="pcre"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - https://github.com/scandum/tintin/releases 2>/dev/null | \
21 sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 cd src &&
28 ./configure $CONFIGURE_ARGS &&
29 make &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cook_copy_folders bin
37 }