blob: a43e70197d08c932d196c9343673affff904724f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
pkgname=sshcd
pkgver=1.0.2
pkgrel=1
pkgdesc="ssh command with directory specification support"
arch=(any)
url="https://github.com/fraction/sshcd"
license=(MIT)
depends=(openssh bash)
makedepends=()
source=(https://github.com/fraction/sshcd/archive/v${pkgver}.tar.gz)
sha256sums=(23e86295ffbfac9c04eda68c8a119c4357c4bb5aa663631e67618db83c7dd372)
package() {
cd "$srcdir/$pkgname-$pkgver"
make install PREFIX=/usr DESTDIR="$pkgdir"
chmod a+x "$pkgdir"/usr/share/licenses/sshcd/ ## Reported, hopefully not required by next release
}
|