blob: 23ae403a7ff67f088899c6e0da8f69d0972cebeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Gustavo Castro < gustawho [ at ] gmail [ dot ] com >
pkgname=tok-git
pkgver=r148.035ab76
pkgrel=2
pkgdesc="Telegram client built using Kirigami"
arch=(x86_64 i686 arm armv6h armv7h aarch64)
url="https://invent.kde.org/network/tok"
license=('GPL3')
depends=('kirigami2' 'knotifications' 'libtd-git' 'ki18n' 'icu' 'rlottie-git')
makedepends=('git' 'qt5-tools' 'qt5-svg' 'qbs')
provides=('tok')
conflicts=('tok')
source=("git+${url}.git")
md5sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
( set -o pipefail
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
cd "${pkgname%-git}"
qbs build --no-install
}
package() {
cd "${pkgname%-git}"
qbs install --no-build --install-root "${pkgdir}"
}
|