wok-next annotate accessx/receipt @ rev 20533

cairo-clock, grub4dos: fix CFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 27 12:50:45 2018 +0200 (2018-03-27)
parents 8f50006d2661
children 31563c763422
rev   line source
paul@6527 1 # SliTaz package receipt.
paul@6527 2
paul@6527 3 PACKAGE="accessx"
paul@6527 4 VERSION="0.951"
paul@6527 5 CATEGORY="utilities"
paul@6527 6 SHORT_DESC="Set and display Xkeyboard (XCB) Accessx features."
paul@6527 7 MAINTAINER="paul@slitaz.org"
pascal@15362 8 LICENSE="GPL2"
al@19001 9 TARBALL="$PACKAGE${VERSION//./}.tar.gz"
paul@6527 10 WEB_SITE="http://cita.disability.uiuc.edu/software/accessx/freewareaccessx.php"
al@19001 11 WGET_URL="$(dirname $WEB_SITE)/files/$TARBALL"
paul@6527 12
pascal@15362 13 DEPENDS="tk tcl"
al@19661 14 BUILD_DEPENDS="xorg-libX11-dev xorg-libXext-dev"
pascal@15362 15
paul@6527 16 # Rules to configure and make the package.
paul@6527 17 compile_rules()
paul@6527 18 {
pascal@15293 19 sed -i 's/^LLIBS=.*/& -lX11/' Makefile
al@19784 20
paul@6527 21 make
paul@6527 22 }
paul@6527 23
paul@6527 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@6527 25 genpkg_rules()
paul@6527 26 {
paul@6527 27 mkdir -p $fs/usr/bin
paul@6527 28 cp -a $src/ax $fs/usr/bin
pascal@10446 29 cp -a $src/accessx* $fs/usr/bin/accessx
paul@6527 30
paul@6527 31 # Change owner & perms accessx
paul@6527 32 chown root.root $fs/usr/bin/accessx
paul@6527 33 chmod 0755 $fs/usr/bin/accessx
paul@6527 34 }
paul@6527 35