wok view xautomation/receipt @ rev 24909

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 09 14:28:38 2022 +0000 (2022-04-09)
parents e3079653b462
children 5a92a26adcc1
line source
1 # SliTaz package receipt.
3 PACKAGE="xautomation"
4 VERSION="1.09"
5 CATEGORY="x-window"
6 SHORT_DESC="Control X from the command line for scripts (fte, visgrep)."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 #WEB_SITE="http://hoopajoo.net/projects/xautomation.html"
11 WEB_SITE="https://sourceforge.net/projects/xautomation/"
12 WGET_URL="http://hoopajoo.net/static/projects/$TARBALL"
13 #HOST_ARCH="i486 arm"
15 DEPENDS="xorg-libX11 libpng"
16 BUILD_DEPENDS="xorg-libX11-dev libpng-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget --no-check-certificate -O - https://www.hoopajoo.net/projects/xautomation.html 2>/dev/null | \
22 sed '/xautomation-/!d;s|.*xautomation-||;s|.tar.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure $CONFIGURE_ARGS &&
29 make && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 }