summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4548fefd27720582f24578ddb12527306e32d454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pkgname=tunnelops
pkgver=1.0.0
pkgrel=1
pkgdesc="Interactive SSH tunnel and file transfer manager built with Bash"
arch=('any')
url="https://github.com/rdarshan927/tunnelops"
license=('AGPL3')
depends=('bash' 'openssh')
optdepends=('sshpass: for password authentication' 'cronie: for cron support')
source=("https://github.com/rdarshan927/tunnelops/archive/refs/tags/v1.0.0.tar.gz")
md5sums=('SKIP')

package() {
    cd "$srcdir/tunnelops"

    install -Dm755 tunnel.sh "$pkgdir/usr/bin/tunnelops"
}