blob: dd275bf0d9e30b7af3b97eebd37b8e4523982d1d (
plain)
1 # Description: Dynamic menu library and client inspired by dmenu
2 # URL: https://github.com/Cloudef/bemenu
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: wayland wayland-protocols libxkbcommon pango cairo
5
6 name=bemenu
7 version=0.6.23
8 release=1
9 source=(https://github.com/Cloudef/bemenu/releases/download/${version}/${name}-${version}.tar.gz)
10
11 build() {
12 cd ${name}-${version}
13 make PREFIX=/usr
14 make DESTDIR="${PKG}" PREFIX=/usr install
15 }
|