35 lines
1.3 KiB
Bash
35 lines
1.3 KiB
Bash
# Maintainer: Johannes Pfrang <johannespfrang+arch @ gmail.com>
|
|
# Co-Maintainer: Emanuele 'Lele aka eldios' Calo' <xeldiosx@gmail.com>
|
|
# Co-Maintainer: Ariel AxionL <arielaxionl@gmail.com | axionl@aosc.io>
|
|
|
|
pkgname=teleport-bin
|
|
pkgver=2.6.7
|
|
pkgrel=1
|
|
pkgdesc="Modern SSH server for teams managing distributed infrastructure"
|
|
arch=('x86_64' 'arm')
|
|
url="https://github.com/gravitational/teleport"
|
|
license=('Apache')
|
|
depends=('glibc')
|
|
install=teleport.install
|
|
source_x86_64=(
|
|
"https://get.gravitational.com/teleport-v${pkgver}-linux-amd64-bin.tar.gz"
|
|
"teleport.service"
|
|
)
|
|
sha256sums_x86_64=('a1bf157bf14082706e5cda2dd6b93c5176e8aa95d7db412e5549920986829882'
|
|
'3e332207cfa984a531044d47fde379a9c242aa92e0fef7804a031dff865396dc')
|
|
sha256sums_arm=('6f9b742a9cdbaa6757baea6f73aa81b361880be9a4bd5c04def17ba63c3cab6e'
|
|
'3e332207cfa984a531044d47fde379a9c242aa92e0fef7804a031dff865396dc')
|
|
source_arm=(
|
|
"https://get.gravitational.com/teleport-v${pkgver}-linux-arm-bin.tar.gz"
|
|
"teleport.service"
|
|
)
|
|
options=(!strip)
|
|
|
|
package() {
|
|
mkdir -p "${pkgdir}/usr/lib/systemd/system" "${pkgdir}/usr/bin"
|
|
install -m644 -t "${pkgdir}/usr/lib/systemd/system/" teleport.service
|
|
cd "${srcdir}/teleport"
|
|
install -m755 -t "${pkgdir}/usr/bin/" teleport tctl tsh
|
|
# no man pages, docs or web assets in release tarball
|
|
}
|