wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="mygestures"
4 VERSION="2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Recognizing gestures made with your mouse and perform actions."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://sourceforge.net/projects/mygestures/"
11 TARBALL="${PACKAGE}_$VERSION.tar.xz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="jansson xorg-libX11 xorg-libXtst"
15 BUILD_DEPENDS="gcc83 jansson-dev xorg-libX11-dev xorg-libXtst"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --sysconfdir=/etc/$PACKAGE \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
34 cp -a $install/etc $fs
35 cp -a $install/usr/bin $fs/usr
36 }