wok annotate xorg-xf86-input-void/receipt @ rev 20936

updated fpm2 again (0.76.1 -> 0.79)
author Hans-G?nter Theisgen
date Sat Mar 02 16:28:51 2019 +0100 (2019-03-02)
parents eb8067417980
children c66bb42e5b3f
rev   line source
pascal@4870 1 # SliTaz package receipt.
pascal@4870 2
pascal@4870 3 PACKAGE="xorg-xf86-input-void"
pascal@15164 4 VERSION="1.4.0"
pascal@4870 5 CATEGORY="x-window"
pascal@4870 6 SHORT_DESC="Xorg server protocol."
pascal@4870 7 MAINTAINER="pankso@slitaz.org"
pascal@15579 8 LICENSE="MIT"
pascal@4870 9 SOURCE="xf86-input-void"
pascal@4870 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@20423 11 WEB_SITE="https://www.x.org/"
pascal@4870 12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
pascal@4870 13
pascal@15164 14 DEPENDS="xorg-server"
pascal@15164 15 BUILD_DEPENDS="xorg-server-dev"
pascal@15164 16
pascal@4870 17 # Rules to configure and make the package.
pascal@4870 18 compile_rules()
pascal@4870 19 {
pascal@4870 20 cd $src
pascal@4870 21 ./configure \
pascal@4870 22 --prefix=/usr \
pascal@4870 23 --sysconfdir=/etc \
pascal@4870 24 --mandir=/usr/share/man \
pascal@4870 25 --localstatedir=/var \
pascal@4870 26 --with-xorg-module-dir=/usr/lib/X11/modules \
pascal@4870 27 --enable-evcalibrate \
pascal@4870 28 $CONFIGURE_ARGS &&
pascal@4870 29 make &&
pascal@15164 30 make DESTDIR=$DESTDIR install
pascal@4870 31 }
pascal@4870 32
pascal@4870 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4870 34 genpkg_rules()
pascal@4870 35 {
pascal@4870 36 mkdir -p $fs/usr/lib/X11/modules/input/
pascal@15164 37 cp -a $install/usr/lib/X11/modules/input/*.so \
pascal@4870 38 $fs/usr/lib/X11/modules/input/
pascal@4870 39 }
pascal@4870 40