blob: 026b41668f0af9e4a5a3d0b4f5837ccda5142977 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Fabien LEFEBVRE <contact@d1ceward.com>
pkgname=sshcommand
pkgver=0.18.1
pkgrel=1
pkgdesc='Turn SSH into a thin client specifically for your app'
arch=('x86_64')
url='https://github.com/dokku/sshcommand'
license=('MIT')
depends=(
'jq'
'openssh'
)
source=("${url}/releases/download/v${pkgver}/${pkgname}"
'LICENSE')
sha256sums=('c55aa77472488b65940983b564b787c8fe6688b16f57f9c052f209abeaf02fc1'
'b1ac2fed5ac269fb7bbf651a3d37ef5fd56d2c33320e17cb6e23a22a93f5c046')
package() {
install -Dm755 sshcommand "${pkgdir}/usr/bin/${pkgname}"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|