wok-next view xorg-xf86-input-evdev/receipt @ rev 20443
The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Feb 24 16:17:33 2018 +0200 (2018-02-24) |
parents | ea3c4b76ea5d |
children | 757d032c55c7 |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-xf86-input-evdev"
4 VERSION="2.10.5"
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 LFS="http://www.linuxfromscratch.org/blfs/view/stable/x/x7driver.html#xorg-evdev-driver"
12 TARBALL="xf86-input-evdev-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
15 # ARM use build system xorg-server-dev or manually install it in sysroot
16 BUILD_DEPENDS_arm="udev-dev"
17 BUILD_DEPENDS="xorg-util-macros xorg-server-dev xorg-xproto xorg-inputproto \
18 xorg-dri3proto eudev-dev libevdev-dev mtdev-dev"
19 SPLIT="xorg-xf86-input-evdev-dev"
21 compile_rules() {
22 fix ld
23 ./configure \
24 --sysconfdir=/etc \
25 --localstatedir=/var \
26 $CONFIGURE_ARGS &&
27 fix libtool &&
28 make &&
29 make install
30 }
32 genpkg_rules() {
33 case $PACKAGE in
34 *-evdev)
35 copy @std
36 DEPENDS="eudev libevdev mtdev"
37 ;;
38 *-dev)
39 copy @dev
40 ;;
41 esac
42 }