summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Mezentsev2020-05-09 12:43:18 +0300
committerSergey Mezentsev2020-05-09 12:43:18 +0300
commit00af9ab9f34880ba0f74abb582b14069591f454c (patch)
treea73452c283efe9c386e9e428199ce48f9d31258a
parent896622e3feac06a23b081df11309f2d84187d8ce (diff)
downloadaur-00af9ab9f34880ba0f74abb582b14069591f454c.tar.gz
added channels
-rw-r--r--PKGBUILD10
1 files changed, 7 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 059c329b0551..c412683cbe39 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,10 @@
# Maintainer: Sergey Mezentsev <thebits@yandex.ru>
pkgbase='clickhouse-bin'
pkgname=('clickhouse-server-bin' 'clickhouse-common-static-bin' 'clickhouse-client-bin')
+# 'stable' - for production environment
+# 'testing' - most recent version
+# 'prestable' and 'lts' are available
+_channel='stable'
pkgver=20.3.8.53
pkgrel=1
provides=('clickhouse')
@@ -9,9 +13,9 @@ arch=('x86_64')
url="https://clickhouse.tech/"
license=('Apache')
source=(
- "https://repo.yandex.ru/clickhouse/tgz/stable/clickhouse-client-$pkgver.tgz"
- "https://repo.yandex.ru/clickhouse/tgz/stable/clickhouse-common-static-$pkgver.tgz"
- "https://repo.yandex.ru/clickhouse/tgz/stable/clickhouse-server-$pkgver.tgz"
+ "https://repo.yandex.ru/clickhouse/tgz/$_channel/clickhouse-client-$pkgver.tgz"
+ "https://repo.yandex.ru/clickhouse/tgz/$_channel/clickhouse-common-static-$pkgver.tgz"
+ "https://repo.yandex.ru/clickhouse/tgz/$_channel/clickhouse-server-$pkgver.tgz"
"clickhouse.sysusers"
"clickhouse-server.service"
)