~alpine/aports

testing/viddy: new aport v1 REJECTED

Marvin Preuss: 1
 testing/viddy: new aport

 1 files changed, 29 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/3610/mbox | git am -3
Learn more about email & git

[PATCH] testing/viddy: new aport Export this patch

---
 testing/viddy/APKBUILD | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 testing/viddy/APKBUILD

diff --git a/testing/viddy/APKBUILD b/testing/viddy/APKBUILD
new file mode 100644
index 0000000000..37a62783a2
--- /dev/null
+++ b/testing/viddy/APKBUILD
@@ -0,0 +1,29 @@
# Contributor: Marvin Preuss <marvin@xsteadfastx.org>
# Maintainer: Marvin Preuss <marvin@xsteadfastx.org>
pkgname=viddy
pkgver=0.1.5
pkgrel=0
pkgdesc="Modern watch command. Time machine and pager etc."
url="https://github.com/sachaos/viddy"
arch="all"
license="MIT"
makedepends="go"
source="$pkgname-$pkgver.tar.gz::https://github.com/sachaos/viddy/archive/refs/tags/v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

export GOFLAGS="$GOFLAGS -modcacherw"

build() {
	go build -ldflags "-X main.version=$pkgver"
}

check() {
	go test ./...
}

package() {
	install -Dm755 $pkgname "$pkgdir"/usr/bin/"$pkgname"
}
sha512sums="
60e5966ad5c8435c110a309a53e406c7fe4b74d1162c84209c63d878f5aed0d0e31733eed71b43d95227c29e4ae1de41386f82252304106538667f8209fc75df  viddy-0.1.5.tar.gz
"
-- 
2.33.0
v2: !24381

-- 
via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/24380#note_175705