wok-next view libfakekey/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents e545e47edffa
children 5669e8b3be70
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 xorg-libX11-dev xorg-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="xorg-libX11 xorg-libXtst"
30 ;;
31 *-dev)
32 copy @dev
33 DEPENDS="libfakekey \
34 xorg-libX11-dev xorg-libXtst-dev"
35 ;;
36 esac
37 TAGS="matchbox"
38 }