wok-4.x view input-utils/receipt @ rev 7490
Up: warzone2100 to 2.3.6. Added --disable-motif so we don't need openmotif as depend for warzone2100 to run.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Dec 02 23:04:15 2010 +0000 (2010-12-02) |
parents | b4953d9f7b87 |
children | a1c1d35d9f92 |
line source
1 # SliTaz package receipt.
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@users.sourceforge.net"
8 DEPENDS=""
9 SOURCE="input"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://dl.bytesex.org/cvs-snapshots/"
12 WGET_URL="http://dl.bytesex.org/cvs-snapshots/$TARBALL"
13 TAGS="kernel input utilities"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 src=$WOK/$PACKAGE/$SOURCE
19 cd $src
20 sed -i 's/input-recv lircd.conf/input-recv/' GNUmakefile
21 prefix="/usr"
22 CFLAGS="$CFLAGS -O3 -march=i486"
23 export prefix CFLAGS
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $WOK/$PACKAGE/$SOURCE/_pkg/usr/bin $fs/usr
32 }