wok annotate mygestures/receipt @ rev 21504

updated mygestures (0.7 -> 2.0)
author Hans-G?nter Theisgen
date Thu May 02 16:26:43 2019 +0100 (2019-05-02)
parents 86790a278e70
children 3d04aad6c72c
rev   line source
pankso@16420 1 # SliTaz package receipt.
pankso@16420 2
pankso@16420 3 PACKAGE="mygestures"
Hans-G?nter@21504 4 VERSION="2.0"
pankso@16420 5 CATEGORY="x-window"
al@17387 6 SHORT_DESC="Recognizing gestures made with your mouse and perform actions."
pankso@16420 7 MAINTAINER="pankso@slitaz.org"
pankso@16420 8 LICENSE="GPL2"
pascal@20421 9 WEB_SITE="https://sourceforge.net/projects/mygestures/"
Hans-G?nter@21504 10
Hans-G?nter@21504 11 TARBALL="${PACKAGE}_$VERSION.tar.xz"
pankso@16420 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
Hans-G?nter@21504 13
Hans-G?nter@21504 14 DEPENDS="jansson xorg-libX11 xorg-libXtst"
Hans-G?nter@21504 15 BUILD_DEPENDS="gcc83 jansson-dev xorg-libX11-dev xorg-libXtst"
Hans-G?nter@21504 16
pankso@16420 17 HOST_ARCH="i486 arm"
pankso@16420 18
pankso@16420 19 # Rules to configure and make the package.
pankso@16420 20 compile_rules()
pankso@16420 21 {
Hans-G?nter@21504 22 ./configure \
Hans-G?nter@21504 23 --sysconfdir=/etc/$PACKAGE \
pankso@16420 24 $CONFIGURE_ARGS &&
Hans-G?nter@21504 25 make &&
Hans-G?nter@21504 26 make install
pankso@16420 27 }
pankso@16420 28
pankso@16420 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@16420 30 genpkg_rules()
pankso@16420 31 {
pankso@16420 32 mkdir -p $fs/usr
Hans-G?nter@21504 33
Hans-G?nter@21504 34 cp -a $install/etc $fs
Hans-G?nter@21504 35 cp -a $install/usr/bin $fs/usr
pankso@16420 36 }