wok view xorg-xf86-input-mutouch/receipt @ rev 6619

Made blender source based now. This means we are compiling it instead of using a binary blob.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Oct 10 00:15:23 2010 +0000 (2010-10-10)
parents d7c87b8a2a34
children 07ae722ec64e
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-mutouch"
4 VERSION="1.2.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server protocol."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg"
9 BUILD_DEPENDS="xorg-server xorg-server-dev xorg-xproto pkg-config \
10 xorg-inputproto xorg-randrproto xorg-xextproto"
11 SOURCE="xf86-input-mutouch"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://www.x.org/"
14 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 patch -p1 -i ../stuff/mutouch-1.2.1-abi.patch
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --mandir=/usr/share/man \
25 --localstatedir=/var \
26 --with-xorg-module-dir=/usr/lib/X11/modules \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib/X11/modules/input/
36 cp -a $_pkg/usr/lib/X11/modules/input/*.so \
37 $fs/usr/lib/X11/modules/input/
38 }