wok-next view libfakekey/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libfakekey"
4 VERSION="0.3"
5 CATEGORY="libs"
6 SHORT_DESC="X virtual keyboard library"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="https://www.yoctoproject.org/software-item/matchbox/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://git.yoctoproject.org/cgit/cgit.cgi/libfakekey/snapshot/$TARBALL"
14 BUILD_DEPENDS="automake libtool libx11-dev libxtst-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./autogen.sh \
19 --disable-static \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 libfakekey)
28 copy @std
29 DEPENDS="libx11 libxtst"
30 ;;
31 *-dev)
32 copy @dev
33 DEPENDS="libfakekey \
34 libx11-dev libxtst-dev"
35 ;;
36 esac
37 TAGS="matchbox"
38 }