~alpine/aports

testing/bemenu: new aport v2 PROPOSED

Cosmo Borsky: 1
 testing/bemenu: new aport

 1 files changed, 28 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/2889/mbox | git am -3
Learn more about email & git

[PATCH v2] testing/bemenu: new aport Export this patch

https://github.com/Cloudef/bemenu
Dynamic menu library and client program inspired by dmenu
---
fix SPDX identifiers for license
makedepends dev packages
remove empty variables
various other adjustments

 testing/bemenu/APKBUILD | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 testing/bemenu/APKBUILD

diff --git a/testing/bemenu/APKBUILD b/testing/bemenu/APKBUILD
new file mode 100644
index 0000000000..f427ceba68
--- /dev/null
+++ b/testing/bemenu/APKBUILD
@@ -0,0 +1,28 @@
# Contributor: Cosmo Borsky <me@cosmoborsky.com>
# Maintainer: Cosmo Borsky <me@cosmoborsky.com>
pkgname="bemenu"
pkgver="0.1.0"
pkgrel=1
pkgdesc="Dynamic menu library and client program inspired by dmenu with support for wayland compositors"
url="https://github.com/Cloudef/bemenu"
arch="x86_64"  #  
license="GPL-3.0-or-later LGPL-3.0-or-later"
depends="pango"
makedepends="cmake libxkbcommon-dev libxinerama-dev ncurses-dev wayland-dev"
source="bemenu-$pkgver.tar.gz::https://github.com/Cloudef/bemenu/archive/$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib
	make
}

check() {
	make test
}

package() {
	make DESTDIR="$pkgdir" install
}

sha512sums="309d58bed4c46b07c856d951a52c7f13adea560aefc921c96c79418424985bcb0e6b5b72c482186f4c42ab754d67c33002bf41f813761afa724ccc410246af3a  bemenu-0.1.0.tar.gz"
-- 
2.22.0