Compare commits

5 Commits

Author SHA1 Message Date
d16afc78b5 update lutgen and lutgen-studio 2025-08-02 11:54:36 -04:00
6e6ec7db14 update lutgen-studio 2025-07-20 17:21:15 -04:00
64d14098d4 make the makefile clean up the previously built packages 2025-07-20 17:16:38 -04:00
8e8cbd7689 update lutgen-studio to 0.2.0 2025-07-15 21:08:40 -04:00
3f5ba948c9 add zz 2025-07-15 17:36:28 -04:00
4 changed files with 26 additions and 2 deletions

View File

@ -37,6 +37,7 @@ sync-clean:
build-clean:
rm -rf ./dest
rm -rf ./void-packages/hostdir/binpkgs/*
clean: sync-clean build-clean

View File

@ -1,6 +1,6 @@
# Template file for 'lutgen-studio'
pkgname=lutgen-studio
version=0.1.1
version=0.3.0
revision=1
archs="x86_64"
makedepends="curl"

View File

@ -1,6 +1,6 @@
# Template file for 'lutgen'
pkgname=lutgen
version=1.0.0
version=1.0.1
revision=2
archs="x86_64"
makedepends="curl"

23
srcpkgs/zz/template Normal file
View File

@ -0,0 +1,23 @@
# Template file for 'zz'
pkgname=zz
version=1
revision=1
archs="x86_64"
makedepends="git"
short_desc="centers the text in your shell, much like pressing zz in vim."
maintainer="Zachary Scheiman <me@zacharyscheiman.com>"
license="MIT"
homepage="https://github.com/jake-stewart/zz"
do_fetch() {
git clone ${homepage} $wrksrc
cd $wrksrc
}
do_build() {
./build.sh
}
do_install() {
vbin zz
}