diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2024-05-22 18:20:03 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2024-05-22 18:20:03 +0200 |
commit | a16a58b298d247f918230f7294f30dbd38229736 (patch) | |
tree | fdeef58c0d8a00bbfb4444d30e5961bed3956efc /apks | |
parent | 840635b5708b114ff010bf5fedf55b3fd67a8960 (diff) | |
download | apkbuilds-a16a58b298d247f918230f7294f30dbd38229736.tar.gz apkbuilds-a16a58b298d247f918230f7294f30dbd38229736.tar.bz2 apkbuilds-a16a58b298d247f918230f7294f30dbd38229736.zip |
fix: Remove test for now
Diffstat (limited to 'apks')
-rw-r--r-- | apks/qtc/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apks/qtc/APKBUILD b/apks/qtc/APKBUILD index cbf570d..d330246 100644 --- a/apks/qtc/APKBUILD +++ b/apks/qtc/APKBUILD @@ -9,14 +9,15 @@ license="MIT" makedepends="go" source="$pkgname-$pkgver.tar.gz::https://github.com/valyala/quicktemplate/archive/refs/tags/v$pkgver.tar.gz" builddir="$srcdir/quicktemplate-$pkgver" +options="!check" # disabled for now build() { go build ./qtc/main.go } -check() { - go test ./... -} +#check() { +# go test ./... +#} package() { install -Dm755 main "$pkgdir"/usr/bin/qtc |