# Description: dynamic menu library and client program inspired by dmenu with support for wayland compositors # URL: https://github.com/Cloudef/bemenu/ # Maintainer: John McQuah, jmcquah at disroot dot org # Depends on: pango # Optional: xorg-libxinerama scdoc wayland-protocols name=bemenu version=0.6.23 release=1 source=(https://github.com/Cloudef/$name/archive/$version/$name-$version.tar.gz) build() { TARGETS="clients curses" BEMENU_INSTALL="install-bins install-libs install-include install-pkgconfig install-curses" prt-get isinst scdoc && { TARGETS+=" man"; BEMENU_INSTALL+=" install-man"; } prt-get isinst xorg-libxinerama xorg-xcb-util-renderutil && { TARGETS+=" x11"; BEMENU_INSTALL+=" install-x11"; } prt-get isinst wayland-protocols && { TARGETS+=" wayland"; BEMENU_INSTALL+=" install-wayland"; } cd $name-$version make PREFIX=/usr $TARGETS make PREFIX=/usr DESTDIR=$PKG ${BEMENU_INSTALL} cd $PKG/usr/lib && ln -sf lib${name}.so.${version} lib${name}.so.${version:0:1} }