wok-next view input-utils/receipt @ rev 20473

Tiny edits...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Mar 10 16:57:21 2018 +0200 (2018-03-10)
parents 408c87fa22ca
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="input-utils"
4 VERSION="20081014-101501"
5 CATEGORY="system-tools"
6 SHORT_DESC="Small collection of linux input layer tools"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://dl.bytesex.org/cvs-snapshots/"
11 TARBALL="input-$VERSION.tar.gz"
12 WGET_URL="http://dl.bytesex.org/cvs-snapshots/$TARBALL"
14 compile_rules() {
15 sed -i 's/input-recv lircd.conf/input-recv/' GNUmakefile
16 prefix="/usr"
18 case $ARCH in
19 x86_64) CFLAGS="$CFLAGS -O3 -march=nocona";;
20 *) CFLAGS="$CFLAGS -O3 -march=$ARCH";;
21 esac
23 export prefix CFLAGS
24 make && make DESTDIR=$DESTDIR install
25 }
27 genpkg_rules() {
28 copy @std
29 TAGS="kernel input utilities"
30 }