wok-4.x annotate xorg-xf86-input-plpevtch/receipt @ rev 4882
xorg-xf86-input-plpevtch: fix WEB_SITE
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Feb 05 11:46:21 2010 +0100 (2010-02-05) |
parents | fd42eeee16fe |
children | d7c87b8a2a34 |
rev | line source |
---|---|
pascal@4881 | 1 # SliTaz package receipt. |
pascal@4881 | 2 |
pascal@4881 | 3 PACKAGE="xorg-xf86-input-plpevtch" |
pascal@4881 | 4 VERSION="0.4.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" |
pascal@4881 | 8 DEPENDS="xorg" |
pascal@4881 | 9 BUILD_DEPENDS="xorg-server xorg-xproto" |
pascal@4881 | 10 SOURCE="xf86-input-plpevtch" |
pascal@4881 | 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 |