first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/xf86-input-evdev/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

View File

@ -0,0 +1,2 @@
# 2.10.6
First version

View File

@ -0,0 +1,16 @@
NAME="xf86-input-evdev"
DESC="Xorg Evdev Driver"
VERSION="2.10.6"
FILES=("https://www.x.org/pub/individual/driver/xf86-input-evdev-$VERSION.tar.bz2")
HASHES=("e8bd1edc6751f92e425cae7eba3c61eb")
DEPENDS=("mtdev" "libevdev")
PACKAGE() {
tar xf $NAME-$VERSION.tar.bz2
cd $NAME-$VERSION
./configure $XORG_CONFIG
make && make DESTDIR=${ROOTDIR} install
cd .. && rm -rf $NAME-$VERSION
}