wok annotate xorg-xf86-input-synaptics/receipt @ rev 24031

updated dialog (1.3_20190211 -> 1.3_20210324)
author Hans-G?nter Theisgen
date Tue Apr 06 13:52:57 2021 +0100 (2021-04-06)
parents 1040bd60b471
children 5d79829fa876
rev   line source
pankso@3045 1 # SliTaz package receipt.
pankso@3045 2
pankso@3045 3 PACKAGE="xorg-xf86-input-synaptics"
mojo@13709 4 VERSION="1.6.2"
pankso@3045 5 CATEGORY="x-window"
pankso@3045 6 SHORT_DESC="Xorg synaptics driver."
pankso@3045 7 MAINTAINER="pankso@slitaz.org"
pascal@15023 8 LICENSE="MIT"
pankso@3045 9 SOURCE="xf86-input-synaptics"
gokhlayeh@6993 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@20423 11 WEB_SITE="https://www.x.org/"
pankso@3045 12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
pankso@3045 13
pascal@15023 14 DEPENDS="xorg-server xorg-libXtst mtdev"
pascal@15023 15 BUILD_DEPENDS="xorg-server-dev xorg-libXtst-dev mtdev-dev"
pascal@15023 16
pankso@3045 17 # Rules to configure and make the package.
pankso@3045 18 compile_rules()
pankso@3045 19 {
pankso@3045 20 cd $src
pankso@3045 21 ./configure \
pankso@3045 22 --prefix=/usr \
pankso@3045 23 --sysconfdir=/etc \
pankso@3045 24 --mandir=/usr/share/man \
pankso@3045 25 --localstatedir=/var \
pankso@3045 26 --with-xorg-module-dir=/usr/lib/X11/modules \
pankso@3045 27 $CONFIGURE_ARGS &&
pankso@3045 28 make &&
pascal@15023 29 make DESTDIR=$DESTDIR install
pankso@3045 30 }
pankso@3045 31
pankso@3045 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3045 33 genpkg_rules()
pankso@3045 34 {
pankso@3045 35 mkdir -p $fs/usr/lib/X11/modules/input/
pascal@15023 36 cp -a $install/usr/bin $fs/usr
pascal@15023 37 cp -a $install/usr/lib/X11/modules/input/*.so \
pascal@15023 38 $fs/usr/lib/X11/modules/input/
gokhlayeh@5878 39 mkdir -p $fs/etc/X11/xorg.conf.d
pascal@8974 40 cp -a $stuff/*.conf $fs/etc/X11/xorg.conf.d
pankso@3045 41 }
pankso@3045 42