Package Details: slides-git 0.9.0.r13.g9e3e13e-1

Git Clone URL: https://aur.archlinux.org/slides-git.git (read-only, click to copy)
Package Base: slides-git
Description: Terminal based presentation tool
Upstream URL: https://github.com/maaslalani/slides
Keywords: go markdown presentation slides
Licenses: MIT
Conflicts: slides, slides-bin
Provides: slides
Submitter: ocelotsloth
Maintainer: ocelotsloth
Last Packager: ocelotsloth
Votes: 0
Popularity: 0.000000
First Submitted: 2021-06-09 02:40 (UTC)
Last Updated: 2023-03-04 13:44 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

primalmotion commented on 2023-03-01 21:42 (UTC)

The build is broken

==> Starting prepare()...
go: clean -testcache cannot be used with package arguments
==> ERROR: A failure occurred in prepare().
    Aborting...

Here's a simple patch to fix it

From 851a1f5d366367134b6fdca15fcee3d0dd5b0eab Mon Sep 17 00:00:00 2001
From: primalmotion <primalmotion@pm.me>
Date: Wed, 1 Mar 2023 13:41:24 -0800
Subject: [PATCH] fixed: remove -testcache

---
 PKGBUILD | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/PKGBUILD b/PKGBUILD
index 11d8d89..601107f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Mark Stenglein <aur@markstenglein.com>

 pkgname=slides-git
-pkgver=0.9.0.r0.g1620042
+pkgver=0.9.0.r13.g9e3e13e
 pkgrel=1
 pkgdesc='Terminal based presentation tool'
 arch=('x86_64')
@@ -22,7 +22,7 @@ pkgver() {

 prepare() {
     cd ${pkgname%-git}
-    go clean -testcache ./...
+    go clean ./...
 }

 build() {
@@ -45,4 +45,3 @@ package() {
     install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
     install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
-
-- 
2.39.2