summaryrefslogtreecommitdiff
path: root/repo/ddcutil/ddcutil.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/ddcutil/ddcutil.xibuild')
-rw-r--r--repo/ddcutil/ddcutil.xibuild25
1 files changed, 25 insertions, 0 deletions
diff --git a/repo/ddcutil/ddcutil.xibuild b/repo/ddcutil/ddcutil.xibuild
new file mode 100644
index 0000000..457c922
--- /dev/null
+++ b/repo/ddcutil/ddcutil.xibuild
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+NAME="ddcutil"
+DESC="Query and change Linux monitor settings using DDC/CI and USB"
+
+MAKEDEPS="linux-headers autoconf automake libtool eudev libusb i2c-tools libxrandr glib kmod"
+
+PKG_VER=1.2.2
+SOURCE="https://github.com/rockowitz/ddcutil/archive/v$PKG_VER.tar.gz"
+
+prepare() {
+ NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+ ./configure \
+ --prefix=/usr \
+ --mandir=/usr/share/man
+ make
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}
+