blob: a18247a056ee5db5674e33b2fb3aa1cd5807668d (
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 PREFIX=/usr
}
package () {
make PREFIX=/usr DESTDIR=$PKG_DEST install
}
|