summaryrefslogtreecommitdiff
path: root/repo/x11/xdg-utils.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-04-17 22:07:52 +0100
committerdavidovski <david@davidovski.xyz>2022-04-17 22:07:52 +0100
commitc35d083dc525e223b085ec00e6863ea6eafb003c (patch)
tree5bbe25b4f92cd1821c8cbbefed9c19de6e42b98e /repo/x11/xdg-utils.xibuild
parent7cc715c1249422ddf91987be64a35eef43e3e62d (diff)
updated musl
Diffstat (limited to 'repo/x11/xdg-utils.xibuild')
-rw-r--r--repo/x11/xdg-utils.xibuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/x11/xdg-utils.xibuild b/repo/x11/xdg-utils.xibuild
new file mode 100644
index 0000000..d3fb5ee
--- /dev/null
+++ b/repo/x11/xdg-utils.xibuild
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+NAME="xdg-utils"
+DESC="Basic desktop integration functions"
+
+MAKEDEPS="make "
+DEPS="file xprop xset "
+
+PKG_VER=1.1.3
+SOURCE="https://portland.freedesktop.org/download/xdg-utils-$PKG_VER.tar.gz"
+ADDITIONAL="xdg-screensaver-mv-T.patch "
+
+build () {
+ ./configure \
+ --prefix=/usr
+ --bindir=/usr/bin \
+ --sysconfdir=/etc \
+ --disable-static
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}