Compare commits

..

8 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
f085365598 update vesktop 2025-07-08 22:20:44 -04:00
9d787e5290 force makefile to run dest no matter what 2025-06-28 15:43:20 -04:00
a64d65ccba update lutgen-studio 2025-06-28 15:39:30 -04:00
5 changed files with 31 additions and 4 deletions

View File

@ -37,5 +37,8 @@ sync-clean:
build-clean:
rm -rf ./dest
rm -rf ./void-packages/hostdir/binpkgs/*
clean: sync-clean build-clean
.PHONY: dest

View File

@ -1,9 +1,10 @@
# Template file for 'lutgen-studio'
pkgname=lutgen-studio
version=0.1.0
version=0.3.0
revision=1
archs="x86_64"
makedepends="curl"
depends="zenity wayland libssl3 libxkbcommon"
short_desc="Blazingly fast interpolated LUT generator and applicator for arbitrary and popular color palettes."
maintainer="Zachary Scheiman <me@zacharyscheiman.com>"
license="MIT"

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"

View File

@ -1,6 +1,6 @@
# Template file for 'vesktop'
pkgname=vesktop
version=1.5.7
version=1.5.8
revision=1
archs="x86_64"
short_desc="custom Discord App"
@ -8,7 +8,7 @@ maintainer="Zachary Scheiman <me@zacharyscheiman.com>"
license="GPL-3.0-or-later"
homepage="https://github.com/Vencord/Vesktop"
distfiles="https://github.com/Vencord/Vesktop/releases/download/v${version}/vesktop-${version}.tar.gz"
checksum=7670381baa4956d3d60b17562a3838db832cf3ff59cdf6563c7ffbc580508038
checksum=c2ed2184da586c575f3dbf14afc41a85760693586b079b3d2b0ba8f181cd3d51
do_install() {

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
}