blob: 41d0ac111af020c68edb906a5bee1672fbd01e23 (
plain)
1 # Description: A window switcher, application launcher and dmenu replacement
2 # URL: https://github.com/DaveDavenport/rofi
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: pango startup-notification libxkbcommon xorg-xcb-util-xrm librsvg check xorg-xcb-util-wm
5
6 name=rofi
7 version=1.6.0
8 release=1
9 source=(https://github.com/DaveDavenport/$name/releases/download/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|