blob: a35217575c2a18d44b266e1b22f644281ba91def (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
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
}
|