summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 126f3950c238824f133a83554f6a5dd9e2d184e2 (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
# Maintainer: Jedrzej Nowak <pigmej@gmail.com>

pkgname=teleport-client
pkgver=4.2.11
pkgrel=2
pkgdesc="Modern SSH server for teams managing distributed infrastructure client only"
arch=('x86_64' 'arm')
url="https://gravitational.com/teleport"
license=('Apache')
depends=('glibc')
source_x86_64=(
    "https://get.gravitational.com/teleport-v${pkgver}-linux-amd64-bin.tar.gz"
    )
sha256sums_x86_64=(
    '06cceb16c9464317f8391be421e66ec7fdb3684123f20406cbc64be46909869a'
    )
source_arm=(
    "https://get.gravitational.com/teleport-v${pkgver}-linux-arm-bin.tar.gz"
    )

sha256sums_arm=(
    'dbae9e5f4bd57fadde03789f27609e56dac5c504b8a2474805291c184dd679ac'
    )

options=(!strip)

package() {
    mkdir -p "${pkgdir}/usr/bin"
    cd "${srcdir}/teleport"
    install -m755 -t "${pkgdir}/usr/bin/" tctl tsh
}