wok-next view xorg-xf86-input-evdev/receipt @ rev 20406

Continue: json-c, json-glib, keyutils, libarchive, libassuan, libatasmart, libatomic_ops, libblockdev, libbytesize, libcroco, libdaemon, libesmtp, libffi, libgcrypt, libgpg-error, libgsf, libgudev, libgusb
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 08 02:55:48 2017 +0200 (2017-12-08)
parents f463de72afe3
children 0e7893ac206d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-xf86-input-evdev"
4 VERSION="2.10.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Generic Linux input driver"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
10 HOST_ARCH="i486 arm"
12 TARBALL="xf86-input-evdev-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
15 BUILD_DEPENDS="xorg-util-macros xorg-server-dev xorg-xproto xorg-inputproto \
16 xorg-dri3proto eudev-dev libevdev-dev mtdev-dev"
17 # ARM use build system xorg-server-dev or manually install it in sysroot
18 BUILD_DEPENDS_arm="udev-dev"
19 SPLIT="xorg-xf86-input-evdev-dev"
20 PKG_RULE="std-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 ./configure \
26 --sysconfdir=/etc \
27 --localstatedir=/var \
28 $CONFIGURE_ARGS &&
29 make &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 case $PACKAGE in
37 *-evdev)
38 copy @std
39 DEPENDS="eudev libevdev mtdev"
40 ;;
41 *-dev)
42 copy @dev
43 DEPENDS="xorg-xf86-input-evdev eudev-dev libevdev-dev mtdev-dev"
44 ;;
45 esac
46 }