blob: 1a4f8bc49d1823b94ffd9910e983a2810ca103ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Maintainer: Sergey Mezentsev <thebits@yandex.ru>
pkgname=ydb
pkgver=2.3.0
pkgrel=1
pkgdesc="Yandex Database CLI"
license=('unknown')
arch=("x86_64")
url="https://cloud.yandex.com/en/docs/ydb/quickstart/examples-ydb-cli"
source=("$pkgname-$pkgver"::"https://storage.yandexcloud.net/yandexcloud-ydb/release/${pkgver}/linux/amd64/ydb")
sha256sums=('6eef3b1e929a7b5c3fa57eae41a845538bb7bd97c27c36cebb9bd00de9e2bdbc')
package() {
cd "${srcdir}"
install -D -m 0755 "$pkgname-$pkgver" "$pkgdir/usr/bin/ydb"
}
|