# Recipe (MakeRecipe) for XF86-Input-Evdev by Lucas Correia Villa Real , on Mon Jan 9 17:13:31 BRST 2006 compile_version=1.11.0 url="https://x.org/archive/individual/driver/xf86-input-evdev-2.10.6.tar.bz2" file_size=408138 file_md5=e8bd1edc6751f92e425cae7eba3c61eb recipe_type=configure configure_options=( --with-sdkdir="$target/include/xorg" ) install_variables=( sdkdir="${target}/include/xorg" ) # Install evdev.conf udev rule pre_link() { mkdir -p ${target}/Shared/X11/xorg.conf.d cat > ${target}/Shared/X11/xorg.conf.d/10-evdev.conf << EOF Section "InputClass" Identifier "evdev pointer catchall" MatchIsPointer "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev keyboard catchall" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev tablet catchall" MatchIsTablet "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev touchscreen catchall" MatchIsTouchscreen "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "ThinkPad HDAPS accelerometer blacklist" MatchProduct "ThinkPad HDAPS Accelerometer data" Option "Ignore" "on" EndSection EOF }