blob: b8e4d6106b2fa981e5adf7340319eaa6cebfcb7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
MAKEDEPS="make"
DEPS="xcb-util-keysyms"
PKG_VER=0.6.2
SOURCE=https://github.com/baskerville/sxhkd/archive/refs/tags/$PKG_VER.tar.gz
DESC="Simple X HotKey Daemon; reacts to input events by executing commands"
build () {
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|