wok view gweled/receipt @ rev 24665

updated incron (0.5.10 -> 0.5.12)
author Hans-G?nter Theisgen
date Fri Mar 11 14:57:00 2022 +0100 (2022-03-11)
parents 4a3989d30c80
children 120dd6158093
line source
1 # SliTaz package receipt.
3 PACKAGE="gweled"
4 VERSION="0.9.1"
5 CATEGORY="games"
6 SHORT_DESC="Gweled game."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://launchpad.net/$PACKAGE"
11 WGET_URL="$WEB_SITE/trunk/$VERSION/+download/$TARBALL"
13 DEPENDS="gtk+ librsvg libmikmod"
14 BUILD_DEPENDS="wget intltool gtk+-dev librsvg-dev libmikmod-dev"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - $WEB_SITE 2>/dev/null | \
20 sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure --prefix=/usr \
27 --localstatedir=/var \
28 --mandir=/usr/share/man \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 cp -a $install/* $fs
38 }