blob: 2aa2e3c2da28fd6c935cf771a92a8daa5d68e29e (
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.21
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 }
|