Skip to content

Instantly share code, notes, and snippets.

@pschmitt
Created July 2, 2017 08:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pschmitt/b4a578364dbb40dcc5f6cf5f9087ca23 to your computer and use it in GitHub Desktop.
Save pschmitt/b4a578364dbb40dcc5f6cf5f9087ca23 to your computer and use it in GitHub Desktop.
AUR teleport 2.2.3
# Maintainer: Johannes Pfrang <johannespfrang+arch @ gmail.com>
# Co-Maintainer: Emanuele 'Lele aka eldios' Calo' <xeldiosx@gmail.com>
pkgname=teleport
pkgver=2.2.3
pkgrel=1
pkgdesc="Modern SSH server for teams managing distributed infrastructure"
arch=('x86_64')
url="https://gravitational.com/teleport"
license=('Apache')
depends=('glibc')
install=teleport.install
source=("https://github.com/gravitational/teleport/releases/download/v${pkgver}/teleport-v${pkgver}-linux-amd64-bin.tar.gz"
"teleport.service")
sha256sums=('00fe54b48fb5265f6b8a92038338766d76f89b81d48d5e3715432c02aa8fe7e8'
'3e332207cfa984a531044d47fde379a9c242aa92e0fef7804a031dff865396dc')
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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment