* Affiliate programs for bots. * Add option to show folder tags in chats list. OBS-URL: https://build.opensuse.org/package/show/server:messaging/telegram-desktop?expand=0&rev=337
14 lines
359 B
Bash
14 lines
359 B
Bash
#! /bin/bash
|
|
|
|
# ada version
|
|
# https://github.com/telegramdesktop/tdesktop/blob/dev/Telegram/build/docker/centos_env/Dockerfile#L799
|
|
rm -rf ada \
|
|
&& git clone -b v2.9.0 --depth=1 https://github.com/ada-url/ada.git \
|
|
&& cd ada \
|
|
&& rm -rf .git \
|
|
&& cd .. \
|
|
&& mv ada ada-v2.9.0 \
|
|
&& zip ada-v2.9.0.zip -r ada-v2.9.0 -x '*.git*' \
|
|
|
|
rm -rf ada-v2.9.0
|