wok-next view accessx/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 8f50006d2661
children 31563c763422
line source
1 # SliTaz package receipt.
3 PACKAGE="accessx"
4 VERSION="0.951"
5 CATEGORY="utilities"
6 SHORT_DESC="Set and display Xkeyboard (XCB) Accessx features."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE${VERSION//./}.tar.gz"
10 WEB_SITE="http://cita.disability.uiuc.edu/software/accessx/freewareaccessx.php"
11 WGET_URL="$(dirname $WEB_SITE)/files/$TARBALL"
13 DEPENDS="tk tcl"
14 BUILD_DEPENDS="xorg-libX11-dev xorg-libXext-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i 's/^LLIBS=.*/& -lX11/' Makefile
21 make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $src/ax $fs/usr/bin
29 cp -a $src/accessx* $fs/usr/bin/accessx
31 # Change owner & perms accessx
32 chown root.root $fs/usr/bin/accessx
33 chmod 0755 $fs/usr/bin/accessx
34 }