22 lines
814 B
Makefile
22 lines
814 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="bemenu"
|
|
PKG_VERSION="0.6.10"
|
|
PKG_SHA256="9d47557ed4572fa66e6a80364b95e4dd7a588ca75fe89c68c029b7f240b56a60"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://github.com/Cloudef/bemenu"
|
|
PKG_URL="https://github.com/Cloudef/bemenu/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain glib wayland wayland-protocols cairo pango libxkbcommon"
|
|
PKG_LONGDESC="Dynamic menu library and client program inspired by dmenu"
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
PKG_MAKE_OPTS_TARGET="PREFIX=/usr clients wayland"
|
|
|
|
makeinstall_target(){
|
|
make DESTDIR=${INSTALL} PREFIX=/usr install-libs install-bins install-wayland install-pkgconfig
|
|
}
|
|
|
|
post_makeinstall_target(){
|
|
ln -sf libbemenu.so.${PKG_VERSION} ${INSTALL}/usr/lib/libbemenu.so.0
|
|
}
|