wok-next annotate libinput/receipt @ rev 19655

Up mtdev, yandex-disk; add libevdev, libinput.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 03 15:33:33 2017 +0200 (2017-03-03)
parents
children f463de72afe3
rev   line source
al@19655 1 # SliTaz package receipt.
al@19655 2
al@19655 3 PACKAGE="libinput"
al@19655 4 VERSION="1.4.1"
al@19655 5 CATEGORY="x-window"
al@19655 6 SHORT_DESC="Library that handles input devices for display servers"
al@19655 7 MAINTAINER="al.bobylev@gmail.com"
al@19655 8 LICENSE="other"
al@19655 9 WEB_SITE="https://www.freedesktop.org/wiki/Software/libinput/"
al@19655 10
al@19655 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19655 12 WGET_URL="http://www.freedesktop.org/software/libinput/$TARBALL"
al@19655 13
al@19655 14 DEPENDS="mtdev eudev libevdev"
al@19655 15 BUILD_DEPENDS="mtdev-dev eudev-dev libevdev-dev"
al@19655 16
al@19655 17 # Rules to configure and make the package.
al@19655 18 compile_rules()
al@19655 19 {
al@19655 20 ./configure \
al@19655 21 --disable-static \
al@19655 22 --disable-libwacom \
al@19655 23 --with-udev-dir=/lib/udev \
al@19655 24 $CONFIGURE_ARGS &&
al@19655 25 make && make install
al@19655 26 }
al@19655 27
al@19655 28 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19655 29 genpkg_rules()
al@19655 30 {
al@19655 31 cook_copy_folders udev bin
al@19655 32 cook_copy_files *.so*
al@19655 33 }