wok annotate xorg-xf86-input-mutouch/receipt @ rev 7110
Fixed get-linux-source script in linux-source.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed Nov 03 18:05:23 2010 +0000 (2010-11-03) |
parents | c3cd7da724c7 |
children | c514cc4854d8 |
rev | line source |
---|---|
pascal@4848 | 1 # SliTaz package receipt. |
pascal@4848 | 2 |
pascal@4848 | 3 PACKAGE="xorg-xf86-input-mutouch" |
pascal@4848 | 4 VERSION="1.2.1" |
pascal@4848 | 5 CATEGORY="x-window" |
pascal@4848 | 6 SHORT_DESC="Xorg server protocol." |
pascal@4848 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@4848 | 8 DEPENDS="xorg" |
slaxemulator@6492 | 9 BUILD_DEPENDS="xorg-server xorg-server-dev xorg-xproto pkg-config \ |
slaxemulator@6492 | 10 xorg-inputproto xorg-randrproto xorg-xextproto" |
pascal@4848 | 11 SOURCE="xf86-input-mutouch" |
gokhlayeh@6993 | 12 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@4848 | 13 WEB_SITE="http://www.x.org/" |
pascal@4848 | 14 WGET_URL="$XORG_MIRROR/driver/$TARBALL" |
pascal@4848 | 15 |
pascal@4848 | 16 # Rules to configure and make the package. |
pascal@4848 | 17 compile_rules() |
pascal@4848 | 18 { |
pascal@4848 | 19 cd $src |
slaxemulator@6492 | 20 patch -p1 -i ../stuff/mutouch-1.2.1-abi.patch |
pascal@4848 | 21 ./configure \ |
pascal@4848 | 22 --prefix=/usr \ |
pascal@4848 | 23 --sysconfdir=/etc \ |
pascal@4848 | 24 --mandir=/usr/share/man \ |
pascal@4848 | 25 --localstatedir=/var \ |
pascal@4848 | 26 --with-xorg-module-dir=/usr/lib/X11/modules \ |
pascal@4848 | 27 $CONFIGURE_ARGS && |
pascal@4848 | 28 make && |
pascal@4848 | 29 make DESTDIR=$PWD/_pkg install |
pascal@4848 | 30 } |
pascal@4848 | 31 |
pascal@4848 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4848 | 33 genpkg_rules() |
pascal@4848 | 34 { |
pascal@4848 | 35 mkdir -p $fs/usr/lib/X11/modules/input/ |
pascal@4848 | 36 cp -a $_pkg/usr/lib/X11/modules/input/*.so \ |
pascal@4848 | 37 $fs/usr/lib/X11/modules/input/ |
pascal@4848 | 38 } |
pascal@4848 | 39 |