mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +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=9.4.3
|
|
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-$pkgver"
|
|
|
|
package() {
|
|
install -dm755 "$pkgdir/usr/share/grafana"
|
|
cp -r "$builddir/plugins-bundled" "$builddir/public" "$pkgdir/usr/share/grafana/"
|
|
}
|
|
|
|
sha512sums="
|
|
bd315ab4ddd52ad7d9cbf81bce9d04fb00fdf418d2148c84385a47649b76df3e2f36c5664692bfe99038b6f4a280176152d508627f57b7f4402767c03f73f7a6 grafana-frontend-9.4.3-bin.tar.gz
|
|
"
|