blob: d6dbe98e2f6275c681460ac444da3472f37bca08 (
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.1
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 }
|