blob: d540e65e2c1616d216b7e5a33a5083bd0b9203e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: tee < teeaur at duck dot com >
pkgname=rill-bin
pkgver=0.51.0
pkgrel=1
pkgdesc="Rill is an operational BI tool that provides fast dashboards that your team will actually use."
#Rill rethinks BI dashboards with embedded database and instant UX
arch=(x86_64)
url="https://rilldata.com"
license=('Apache')
provides=('rill')
conflicts=('rill')
source=("rill-$pkgver.zip::https://github.com/rilldata/rill/releases/download/v$pkgver/rill_linux_amd64.zip")
sha256sums=('7591fdb67236b57264f121437ecea2d8f858d16a2f8fb60b2766961fc22dfd95')
package() {
install -Dm0755 rill "$pkgdir/usr/bin/rill"
install -Dm644 "LICENSE.md" -t "$pkgdir/usr/share/licenses/$pkgname/"
}
# vim:set noet sts=0 sw=4 ts=4 ft=PKGBUILD:
|