commit f2620ed42ffcd0568ddf563cbea65fb23eca0515 Author: fbt Date: Mon Jun 8 12:31:18 2015 +0300 init diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..ef9ac9e --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = xorg-noudev-conf + pkgdesc = X.Org configuration for setups with no udev. + pkgver = 0.1 + pkgrel = 1 + url = https://google.com + arch = any + license = WTFPL + depends = xorg-server + source = 00-disable-hotplug.conf + source = 05-input.conf + md5sums = 6f18a3b0f6d23ada0476edcb375bd115 + md5sums = dd3365d7218bc167ed99279acfb945ba + +pkgname = xorg-noudev-conf + diff --git a/00-disable-hotplug.conf b/00-disable-hotplug.conf new file mode 100644 index 0000000..142f801 --- /dev/null +++ b/00-disable-hotplug.conf @@ -0,0 +1,3 @@ +Section "ServerFlags" + Option "AutoAddDevices" "False" +EndSection diff --git a/05-input.conf b/05-input.conf new file mode 100644 index 0000000..0bf2ac0 --- /dev/null +++ b/05-input.conf @@ -0,0 +1,10 @@ +Section "InputDevice" + Identifier "Mouse0" + Driver "mouse" + Option "Device" "/dev/input/mice" +EndSection + +Section "InputDevice" + Identifier "Keyboard0" + Driver "kbd" +EndSection diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..5d8e1ea --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Jack L. Frost +pkgname=xorg-noudev-conf +pkgver=0.1 +pkgrel=1 +pkgdesc="X.Org configuration for setups with no udev." +url="https://google.com" +arch=( 'any' ) +license=( 'WTFPL' ) +depends=( 'xorg-server' ) +#optdepends=() +#makedepends=() +#conflicts=() +#replaces=() +#backup=() + +#install='foo.install' +source=( '00-disable-hotplug.conf' '05-input.conf' ) +md5sums=('6f18a3b0f6d23ada0476edcb375bd115' + 'dd3365d7218bc167ed99279acfb945ba') + +build() { + msg "No build required" +} + +package() { + install -Dm644 '00-disable-hotplug.conf' "$pkgdir/usr/share/X11/xorg.conf.d/00-disable-hotplug.conf" + install -Dm644 '05-input.conf' "$pkgdir/usr/share/X11/xorg.conf.d/05-input.conf" +} + +# vim:set ts=2 sw=2 et: