2019-07-08 08:03:40 -03:00

32 lines
860 B
Plaintext

# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
#
# Note: git-secret is very badly designed, I'll replace this abuild once
# I find or write something better.
pkgname=git-secret
pkgver=0.2.6
pkgrel=0
pkgdesc="A bash-tool to store your private data inside a git repository"
url="https://git-secret.io/"
arch="noarch"
license="MIT"
depends="bash gnupg"
checkdepends="bats"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/sobolevn/$pkgname/archive/v$pkgver.tar.gz"
options="!check" # does not work in a container w/o tty
build() {
make
}
check() {
make test
}
package() {
make PREFIX="$pkgdir/usr" install
}
sha512sums="9f83265d17eeb077882602fe3a69a161629e2fbe983b583c048bf55d0590a50d232d19fc8b89a599bcbe5f6280049f21a527b41985ffbc59ee52e01beb2d7ba2 git-secret-0.2.6.tar.gz"