blob: 156fb388bcc0dc0d69aa308ff3e044c0c108faf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: Max Harmathy <harmathy@alumni.tum.de>
# Contributor: JunYoung Gwak <aur@jgwak.com>
# Contributor: Adam Ehlers Nyholm Thomsen <adament@adament.net>
# Contributor: Sebastian Jug <seb@stianj.ug>ote-gcrypt'
pkgname='git-remote-gcrypt'
pkgver='1.5'
pkgrel=4
pkgdesc='A git remote helper for GPG-encrypted remotes.'
arch=(any)
url='https://spwhitton.name/tech/code/git-remote-gcrypt/'
license=("GPL-2.0-or-later OR GPL-3.0-or-later")
makedepends=(
python-docutils
)
depends=(
bash
git
gnupg
)
optdepends=(
'curl: sftp backend support'
'rclone: rclone backend support'
'rsync: rsync backend support'
)
source=("git+https://git.spwhitton.name/git-remote-gcrypt#tag=${pkgver}")
sha256sums=('1d4ea10547f3948902e030d1f40687746ad02ef13534efcf2a9daaa9a7747c1b')
package() {
cd "$srcdir/$pkgname"
DESTDIR="$pkgdir/" prefix="/usr" ./install.sh
}
|