wok annotate xorg-xf86-input-mutouch/receipt @ rev 15666

Add ddumbfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 13 16:18:29 2013 +0000 (2013-12-13)
parents 940b5937e496
children 9d996cff90a4
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@15579 8 LICENSE="MIT"
pascal@4848 9 SOURCE="xf86-input-mutouch"
gokhlayeh@6993 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@4848 11 WEB_SITE="http://www.x.org/"
pascal@4848 12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
pascal@4848 13
pascal@15579 14 DEPENDS="xorg-server"
pascal@15579 15 BUILD_DEPENDS="xorg-server-dev"
pascal@15579 16
pascal@4848 17 # Rules to configure and make the package.
pascal@4848 18 compile_rules()
pascal@4848 19 {
pascal@4848 20 cd $src
pascal@8974 21 patch -p1 -i $stuff/mutouch-1.2.1-abi.patch
pascal@4848 22 ./configure \
pascal@4848 23 --prefix=/usr \
pascal@4848 24 --sysconfdir=/etc \
pascal@4848 25 --mandir=/usr/share/man \
pascal@4848 26 --localstatedir=/var \
pascal@4848 27 --with-xorg-module-dir=/usr/lib/X11/modules \
pascal@4848 28 $CONFIGURE_ARGS &&
pascal@4848 29 make &&
pascal@15579 30 make DESTDIR=$DESTDIR install
pascal@4848 31 }
pascal@4848 32
pascal@4848 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4848 34 genpkg_rules()
pascal@4848 35 {
pascal@4848 36 mkdir -p $fs/usr/lib/X11/modules/input/
pascal@15579 37 cp -a $install/usr/lib/X11/modules/input/*.so \
pascal@15579 38 $fs/usr/lib/X11/modules/input/
pascal@4848 39 }
pascal@4848 40