mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
32 lines
1.3 KiB
Text
32 lines
1.3 KiB
Text
# Contributor: Konstantin Kulikov <k.kulikov2@gmail.com>
|
|
# Maintainer: Konstantin Kulikov <k.kulikov2@gmail.com>
|
|
|
|
# Make sure to keep this package in sync with grafana.
|
|
|
|
# Frontend files split from main grafana package.
|
|
# This is because grafana's build process is
|
|
# > build backend -> test backend -> build frontend -> test frontend
|
|
# while alpine doesn't allow easily interleaving those.
|
|
# Second problem is grafana doesn't support building on anything except linux/amd64,
|
|
# while alpine requires every build to be done natively.
|
|
# This is also a reason why we use prebuilt frontend archive.
|
|
|
|
pkgname=grafana-frontend
|
|
pkgver=12.0.0
|
|
pkgrel=0
|
|
pkgdesc="Open source, feature rich metrics dashboard and graph editor (frontend files)"
|
|
url="https://grafana.com"
|
|
arch="noarch"
|
|
license="AGPL-3.0-only"
|
|
options="!check" # We don't build frontend from sources.
|
|
source="$pkgname-$pkgver-bin.tar.gz::https://dl.grafana.com/oss/release/grafana-$pkgver.linux-amd64.tar.gz"
|
|
builddir="$srcdir/grafana-v$pkgver"
|
|
|
|
package() {
|
|
install -dm755 "$pkgdir/usr/share/grafana"
|
|
cp -r "$builddir/plugins-bundled" "$builddir/public" "$pkgdir/usr/share/grafana/"
|
|
}
|
|
|
|
sha512sums="
|
|
9eb9a6d40132b66dae7d766f67092123ce7d68d9c893c0c225609998c0b6e22da507021534fff3159d81d10047346045599e946d9052e03832c8efd09189b7ca grafana-frontend-12.0.0-bin.tar.gz
|
|
"
|