mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +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.2
|
|
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="
|
|
41e78275fc13ed6e5f1223dd46f034ee75e2e2c8a1677e56d1f610f1a7edc8eef151964db93a44ec777bb53c32adacb70672583d7e1baae7ba7b7f53531c9f25 grafana-frontend-9.4.2-bin.tar.gz
|
|
"
|