wok view xautomation/receipt @ rev 24983

Up xcursor-comix (0.9.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 08 16:45:21 2022 +0000 (2022-05-08)
parents fff755dd0f58
children
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="https://www.hoopajoo.net/projects/xautomation.html"
11 WGET_URL="https://www.hoopajoo.net/static/projects/$TARBALL"
12 #HOST_ARCH="i486 arm"
14 DEPENDS="xorg-libX11 libpng"
15 BUILD_DEPENDS="xorg-libX11-dev libpng-dev"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget --no-check-certificate -O - https://www.hoopajoo.net/projects/xautomation.html 2>/dev/null | \
21 sed '/xautomation-/!d;s|.*xautomation-||;s|.tar.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./configure $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }