wok-next view xstroke/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents 49205cea4356
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xstroke"
4 VERSION="0.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Full-screen gesture recognition program for X"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 #WEB_SITE="https://cworth.org/cworth/papers/xstroke/"
10 #WEB_SITE="https://web.archive.org/web/20170829030627/https://cworth.org/cworth/papers/xstroke/"
11 WEB_SITE="https://www.usenix.org/legacy/publications/library/proceedings/usenix03/tech/freenix03/full_papers/worth/worth_html/xstroke.html"
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WGET_URL="http://davesource.com/Projects/xstroke/xstroke.tar.gz"
16 BUILD_DEPENDS="libx11-dev"
17 DEPENDS_std="libx11"
19 compile_rules() {
20 sed \
21 -e "s|^CC.*|CC = $HOST_SYSTEM-gcc|" \
22 -e "s|^INCLUDE.*|INCLUDE = -I/usr/include|" \
23 -e "s|^LDFLAGS.*|LDFLAGS = -L/usr/lib|" \
24 -i Makefile
26 make xstroke || return 1
28 install -Dm755 xstroke $install/usr/bin/xstroke
29 chmod 644 xstroke.man
30 cook_pick_docs xstroke.man
31 }