summaryrefslogtreecommitdiff
path: root/repo/x11/dmenu.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/dmenu.xibuild
parent7cc715c1249422ddf91987be64a35eef43e3e62d (diff)
updated musl
Diffstat (limited to 'repo/x11/dmenu.xibuild')
-rw-r--r--repo/x11/dmenu.xibuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/repo/x11/dmenu.xibuild b/repo/x11/dmenu.xibuild
new file mode 100644
index 0000000..0356f4e
--- /dev/null
+++ b/repo/x11/dmenu.xibuild
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+NAME="dmenu"
+DESC="Dynamic menu for X"
+
+MAKEDEPS="make"
+DEPS="fontconfig libx11 libxft libxinerama musl"
+
+PKG_VER=5.1
+SOURCE="https://dl.suckless.org/tools/dmenu-$PKG_VER.tar.gz"
+
+prepare () {
+ sed -i -e '/CFLAGS/{s/-Os//;s/=/+=/}' \
+ -e '/LDFLAGS/{s/=/+=/}' \
+ config.mk
+}
+
+build () {
+ make PREFIX=/usr \
+ X11INC=/usr/include/X11 \
+ X11LIB=/usr/lib/X11 \
+ FREETYPEINC=/usr/include/freetype2
+}
+
+package () {
+ make PREFIX=/usr DESTDIR=$PKG_DEST install
+}