wok annotate xorg-xf86-input-plpevtch/receipt @ rev 12117

Up: tazdev (1.5) - Use pkgs to create minimal chroot, improvment and fixes
author Christophe Lincoln <pankso@slitaz.org>
date Tue Mar 13 09:57:31 2012 +0100 (2012-03-13)
parents 2e7bfa3045a0
children eb8067417980
rev   line source
pascal@4881 1 # SliTaz package receipt.
pascal@4881 2
pascal@4881 3 PACKAGE="xorg-xf86-input-plpevtch"
erjo@5901 4 VERSION="0.5.0"
pascal@4881 5 CATEGORY="x-window"
pascal@4882 6 SHORT_DESC="Xorg server driver for touchscreens."
pascal@4882 7 MAINTAINER="pascal.bellard@slitaz.org"
slaxemulator@8029 8 DEPENDS="xorg-server"
slaxemulator@8029 9 BUILD_DEPENDS="xorg-server-dev"
pascal@4881 10 SOURCE="xf86-input-plpevtch"
pascal@6995 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@4882 12 WEB_SITE="http://www.plop.at/en/touchscreen.html"
pascal@4881 13 WGET_URL="http://download.plop.at/files/plpevtch/$TARBALL"
pascal@4881 14
pascal@4881 15 # Rules to configure and make the package.
pascal@4881 16 compile_rules()
pascal@4881 17 {
pascal@4881 18 cd $src
pascal@4881 19 ./configure \
pascal@4881 20 --prefix=/usr \
pascal@4881 21 --sysconfdir=/etc \
pascal@4881 22 --mandir=/usr/share/man \
pascal@4881 23 --localstatedir=/var \
pascal@4881 24 --with-xorg-module-dir=/usr/lib/X11/modules \
pascal@4881 25 $CONFIGURE_ARGS &&
pascal@4881 26 make &&
pascal@4881 27 make DESTDIR=$PWD/_pkg install
pascal@4881 28 }
pascal@4881 29
pascal@4881 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4881 31 genpkg_rules()
pascal@4881 32 {
pascal@4881 33 mkdir -p $fs/usr/lib/X11/modules/input/
pascal@4881 34 cp -a $_pkg/usr/lib/X11/modules/input/*.so \
pascal@4881 35 $fs/usr/lib/X11/modules/input/
pascal@4881 36 }
pascal@4881 37