mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-06 14:12:23 +01:00
30 lines
680 B
Plaintext
30 lines
680 B
Plaintext
# Maintainer: Bradley Saulteaux <bradsoto@gmail.com>
|
|
pkgname=j4-dmenu-desktop
|
|
pkgver=2.16
|
|
pkgrel=0
|
|
pkgdesc="A fast desktop menu"
|
|
url="https://github.com/enkore/${pkgname}"
|
|
arch="all"
|
|
license="GPL-3.0-only"
|
|
depends="dmenu"
|
|
makedepends="cmake git"
|
|
install=""
|
|
subpackages=""
|
|
source="${pkgname}-${pkgver}.tar.gz::${url}/archive/r${pkgver}.tar.gz"
|
|
builddir="$srcdir"/$pkgname-r$pkgver
|
|
|
|
build() {
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr .
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="d5bb0902d4bdc474fa20bc9d8f79de90a92bb4941f0d325dfcfaa1347ea3ad355b87da8194bc3f654970e9ab8848e6ecb5093f3c75fbaa8dbc40199fe6ea2837 j4-dmenu-desktop-2.16.tar.gz"
|