21 lines
333 B
Plaintext
21 lines
333 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
NAME=rofi
|
||
|
VERSION=nightly
|
||
|
UPSTREAM=https://davatorium/rofi.git
|
||
|
|
||
|
# depends on
|
||
|
# bison
|
||
|
# cairo-devel
|
||
|
# flex
|
||
|
# gdk-pixbuf-devel
|
||
|
# glib-devel
|
||
|
# libxkbcommon-devel
|
||
|
# pango-devel
|
||
|
# pkgconf
|
||
|
# meson
|
||
|
# startup-notification-devel
|
||
|
# xcb-util-cursor-devel
|
||
|
sh -c 'cd "$SRC"; meson setup build'
|
||
|
ninja -C "$SRC"/build install
|