wok-undigest diff xorg-xf86-input-plpevtch/receipt @ rev 1223

copied libxext recipe from wok-next
author Hans-G?nter Theisgen
date Fri Nov 15 17:38:29 2019 +0100 (2019-11-15)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xorg-xf86-input-plpevtch/receipt	Fri Nov 15 17:38:29 2019 +0100
     1.3 @@ -0,0 +1,39 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="xorg-xf86-input-plpevtch"
     1.7 +VERSION="0.5.0"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="Xorg server driver for touchscreens."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="MIT"
    1.12 +SOURCE="xf86-input-plpevtch"
    1.13 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://www.plop.at/en/touchscreen.html"
    1.15 +WGET_URL="http://download.plop.at/files/plpevtch/$TARBALL"
    1.16 +
    1.17 +DEPENDS="xorg-server"
    1.18 +BUILD_DEPENDS="xorg-server-dev"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +    cd $src
    1.24 +    ./configure \
    1.25 +    	--prefix=/usr \
    1.26 +    	--sysconfdir=/etc \
    1.27 +    	--mandir=/usr/share/man \
    1.28 +    	--localstatedir=/var \
    1.29 +    	--with-xorg-module-dir=/usr/lib/X11/modules \
    1.30 +    	$CONFIGURE_ARGS &&
    1.31 +    make &&
    1.32 +    make DESTDIR=$DESTDIR install
    1.33 +}
    1.34 +
    1.35 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.36 +genpkg_rules()
    1.37 +{
    1.38 +	mkdir -p $fs/usr/lib/X11/modules/input/
    1.39 +	cp -a $install/usr/lib/X11/modules/input/*.so \
    1.40 +		$fs/usr/lib/X11/modules/input/
    1.41 +}
    1.42 +