wok-next view libinput/receipt @ rev 19715

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