24 lines
499 B
Plaintext
24 lines
499 B
Plaintext
# Description: Wrapper library for evdev devices
|
|
# URL: https://xorg.freedesktop.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: xorg-libevdev
|
|
|
|
name=xorg-libevdev-32
|
|
version=1.11.0
|
|
release=1
|
|
source=(https://www.freedesktop.org/software/libevdev/libevdev-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libevdev-$version
|
|
|
|
PYTHON='/usr/bin/python3' \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
|
}
|