aboutsummaryrefslogtreecommitdiffstats
path: root/testing/git-secret/APKBUILD
blob: b30999b029eb03c17aaae2d80e85c09af9d348d9 (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
# 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"