wok-current annotate xorg-xf86-input-plpevtch/receipt @ rev 15965
xorg-libXau: add to ARM arch
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon Feb 24 15:44:41 2014 +0100 (2014-02-24) |
parents | c514cc4854d8 |
children |
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" |
pascal@15579 | 8 LICENSE="MIT" |
pascal@4881 | 9 SOURCE="xf86-input-plpevtch" |
pascal@6995 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@4882 | 11 WEB_SITE="http://www.plop.at/en/touchscreen.html" |
pascal@4881 | 12 WGET_URL="http://download.plop.at/files/plpevtch/$TARBALL" |
pascal@4881 | 13 |
pascal@15579 | 14 DEPENDS="xorg-server" |
pascal@15579 | 15 BUILD_DEPENDS="xorg-server-dev" |
pascal@15579 | 16 |
pascal@4881 | 17 # Rules to configure and make the package. |
pascal@4881 | 18 compile_rules() |
pascal@4881 | 19 { |
pascal@4881 | 20 cd $src |
pascal@4881 | 21 ./configure \ |
pascal@4881 | 22 --prefix=/usr \ |
pascal@4881 | 23 --sysconfdir=/etc \ |
pascal@4881 | 24 --mandir=/usr/share/man \ |
pascal@4881 | 25 --localstatedir=/var \ |
pascal@4881 | 26 --with-xorg-module-dir=/usr/lib/X11/modules \ |
pascal@4881 | 27 $CONFIGURE_ARGS && |
pascal@4881 | 28 make && |
pascal@15579 | 29 make DESTDIR=$DESTDIR install |
pascal@4881 | 30 } |
pascal@4881 | 31 |
pascal@4881 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4881 | 33 genpkg_rules() |
pascal@4881 | 34 { |
pascal@4881 | 35 mkdir -p $fs/usr/lib/X11/modules/input/ |
pascal@15579 | 36 cp -a $install/usr/lib/X11/modules/input/*.so \ |
pascal@15579 | 37 $fs/usr/lib/X11/modules/input/ |
pascal@4881 | 38 } |
pascal@4881 | 39 |