wok-next annotate xstroke/receipt @ rev 21465

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