diff options
Diffstat (limited to 'repo/x11')
-rw-r--r-- | repo/x11/slock.xibuild | 18 | ||||
-rw-r--r-- | repo/x11/xclip.xibuild | 27 | ||||
-rw-r--r-- | repo/x11/xsel.xibuild | 28 |
3 files changed, 73 insertions, 0 deletions
diff --git a/repo/x11/slock.xibuild b/repo/x11/slock.xibuild new file mode 100644 index 0000000..596cdcf --- /dev/null +++ b/repo/x11/slock.xibuild @@ -0,0 +1,18 @@ +#!/bin/sh + +NAME="slock" +DESC="simple X display locker utility" + +MAKEDEPS="make " +DEPS="libx11 " + +PKG_VER=master +SOURCE="https://git.suckless.org/slock" + +build () { + make PREFIX=/usr +} + +package () { + make PREFIX=/usr DESTDIR=$PKG_DEST install +} diff --git a/repo/x11/xclip.xibuild b/repo/x11/xclip.xibuild new file mode 100644 index 0000000..28de291 --- /dev/null +++ b/repo/x11/xclip.xibuild @@ -0,0 +1,27 @@ +#!/bin/sh + +NAME="xclip" +DESC="Command line interface to the X11 clipboard" + +MAKEDEPS="make " +DEPS="libx11 musl libxmu " + +PKG_VER=0.13 +SOURCE="https://github.com/astrand/xclip/archive/$PKG_VER.tar.gz" + +prepare () { + autoreconf -vif +} + +build () { + ./configure \ + --prefix=/usr \ + --bindir=/usr/bin \ + --sysconfdir=/etc \ + --disable-static + make +} + +package () { + make DESTDIR=$PKG_DEST install +} diff --git a/repo/x11/xsel.xibuild b/repo/x11/xsel.xibuild new file mode 100644 index 0000000..ee59b5b --- /dev/null +++ b/repo/x11/xsel.xibuild @@ -0,0 +1,28 @@ +#!/bin/sh + +NAME="xsel" +DESC="Command-line program for manipulating the X selection" + +MAKEDEPS="make " +DEPS="libx11 " + +PKG_VER=1.2.0_git20190821 +git_rev=ef01f3c72a195dbce682184c842b81b17d7d7ad1 +SOURCE="https://github.com/kfish/xsel/archive/$git_rev/xsel-$git_rev.tar.gz" + +prepare () { + autoreconf -fi +} + +build () { + ./configure \ + --prefix=/usr \ + --bindir=/usr/bin \ + --sysconfdir=/etc \ + --disable-static + make +} + +package () { + make DESTDIR=$PKG_DEST install +} |