diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-06-29 23:15:54 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-06-29 23:15:54 +0800 |
| commit | ae4593e20cef97c7323d522b40994a59425cd6d5 (patch) | |
| tree | 7b3e8750bbbfa32e917869e325027108ee59ee85 /repos/xorg/xf86-input-synaptics | |
| parent | b5aa76f45da627817380276080b2b8bba6e74f68 (diff) | |
| download | alicelinux-ae4593e20cef97c7323d522b40994a59425cd6d5.tar.gz alicelinux-ae4593e20cef97c7323d522b40994a59425cd6d5.zip | |
added xorg repo
Diffstat (limited to 'repos/xorg/xf86-input-synaptics')
| -rw-r--r-- | repos/xorg/xf86-input-synaptics/.files | 25 | ||||
| -rw-r--r-- | repos/xorg/xf86-input-synaptics/50-synaptics.conf | 15 | ||||
| -rw-r--r-- | repos/xorg/xf86-input-synaptics/abuild | 9 | ||||
| -rw-r--r-- | repos/xorg/xf86-input-synaptics/depends | 3 |
4 files changed, 52 insertions, 0 deletions
diff --git a/repos/xorg/xf86-input-synaptics/.files b/repos/xorg/xf86-input-synaptics/.files new file mode 100644 index 00000000..11caf7fb --- /dev/null +++ b/repos/xorg/xf86-input-synaptics/.files @@ -0,0 +1,25 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/synclient +-rwxr-xr-x root/root usr/bin/syndaemon +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/xorg/ +-rw-r--r-- root/root usr/include/xorg/synaptics-properties.h +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/xorg-synaptics.pc +drwxr-xr-x root/root usr/lib/xorg/ +drwxr-xr-x root/root usr/lib/xorg/modules/ +drwxr-xr-x root/root usr/lib/xorg/modules/input/ +-rwxr-xr-x root/root usr/lib/xorg/modules/input/synaptics_drv.so +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/X11/ +drwxr-xr-x root/root usr/share/X11/xorg.conf.d/ +-rw-r--r-- root/root usr/share/X11/xorg.conf.d/50-synaptics.conf +-rw-r--r-- root/root usr/share/X11/xorg.conf.d/70-synaptics.conf +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/synclient.1.gz +-rw-r--r-- root/root usr/share/man/man1/syndaemon.1.gz +drwxr-xr-x root/root usr/share/man/man4/ +-rw-r--r-- root/root usr/share/man/man4/synaptics.4.gz diff --git a/repos/xorg/xf86-input-synaptics/50-synaptics.conf b/repos/xorg/xf86-input-synaptics/50-synaptics.conf new file mode 100644 index 00000000..09c37642 --- /dev/null +++ b/repos/xorg/xf86-input-synaptics/50-synaptics.conf @@ -0,0 +1,15 @@ +# DO NOT EDIT THIS FILE - IT WILL BE OVERWRITTEN ON UPGRADES +# Copy this file to /etc/X11/xorg.conf.d/ and edit the copy +# +# Use "synclient -l" to see all available options +# Use "man synaptics" for details about what the options do +# +Section "InputClass" + Identifier "touchpad" + Driver "synaptics" + MatchDevicePath "/dev/input/event*" + MatchIsTouchpad "on" + Option "TapButton1" "1" + Option "TapButton2" "2" + Option "TapButton3" "3" +EndSection diff --git a/repos/xorg/xf86-input-synaptics/abuild b/repos/xorg/xf86-input-synaptics/abuild new file mode 100644 index 00000000..1791964f --- /dev/null +++ b/repos/xorg/xf86-input-synaptics/abuild @@ -0,0 +1,9 @@ +name=xf86-input-synaptics +version=1.9.2 +release=1 +source="https://www.x.org/pub/individual/driver/$name-$version.tar.xz + 50-synaptics.conf" + +postbuild() { + install -m644 $SRC/50-synaptics.conf $PKG/usr/share/X11/xorg.conf.d/ +} diff --git a/repos/xorg/xf86-input-synaptics/depends b/repos/xorg/xf86-input-synaptics/depends new file mode 100644 index 00000000..2ad0503d --- /dev/null +++ b/repos/xorg/xf86-input-synaptics/depends @@ -0,0 +1,3 @@ +xorg-server +libevdev +libxi |