diff options
author | davidovski <david@davidovski.xyz> | 2022-05-04 23:28:13 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-04 23:28:13 +0100 |
commit | 4c585ad54388285500fd18a6aaa516894e0f2c16 (patch) | |
tree | 756ab363c11ce8dec4d16e20885c5e422db4a92e /repo/apps/xclock-cat.xibuild | |
parent | 751b7f3d84515715d07d92a5aed78062bd39adff (diff) |
added xcatclock
Diffstat (limited to 'repo/apps/xclock-cat.xibuild')
-rw-r--r-- | repo/apps/xclock-cat.xibuild | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/repo/apps/xclock-cat.xibuild b/repo/apps/xclock-cat.xibuild new file mode 100644 index 0000000..0338096 --- /dev/null +++ b/repo/apps/xclock-cat.xibuild @@ -0,0 +1,18 @@ +#!/bin/sh + +NAME="xclock-cat" +DESC="xclock cat mode" + +MAKEDEPS="make" +DEPS="libx11 motif" + +PKG_VER=master +SOURCE="https://github.com/BarkyTheDog/catclock" + +build () { + make +} + +package () { + install -Dm755 xclock $PKG_DEST/usr/bin/xclock-cat +} |