Compare commits
12 Commits
d56206533d
...
master
Author | SHA1 | Date | |
---|---|---|---|
d16afc78b5
|
|||
6e6ec7db14
|
|||
64d14098d4
|
|||
8e8cbd7689
|
|||
3f5ba948c9
|
|||
f085365598
|
|||
9d787e5290
|
|||
a64d65ccba
|
|||
652c7fc116
|
|||
bec0968764
|
|||
804edca4fe
|
|||
ca3a9d8b1e
|
16
Makefile
16
Makefile
@ -1,8 +1,9 @@
|
||||
BUILDDIR := ./void-packages
|
||||
TEMPLATES := $(shell find srcpkgs/* -maxdepth 0 -type d)
|
||||
PACKAGES := $(addprefix $(BUILDDIR)/,$(notdir $(TEMPLATES)))
|
||||
.SHELLFLAGS := -ec
|
||||
|
||||
all: sync $(PACKAGES) end
|
||||
all: sync $(PACKAGES) dest end
|
||||
|
||||
$(info TEMPLATES: $(TEMPLATES))
|
||||
$(info PACKAGES: $(PACKAGES))
|
||||
@ -11,11 +12,13 @@ $(BUILDDIR)/%: srcpkgs/%
|
||||
@echo "Building package: $<"
|
||||
@rm -rf $(BUILDDIR)/srcpkgs/$<
|
||||
@cp -ru $< $(BUILDDIR)/srcpkgs/
|
||||
@-cd $(BUILDDIR) && ./xbps-src clean $<
|
||||
@-cd $(BUILDDIR) && ./xbps-src pkg $< || echo "Warning: Failed to build $<"
|
||||
@cd $(BUILDDIR) && ./xbps-src clean $<
|
||||
@cd $(BUILDDIR) && ./xbps-src pkg $<
|
||||
|
||||
dest:
|
||||
@mkdir -p ./dest
|
||||
@-cp -u $(BUILDDIR)/hostdir/binpkgs/*.xbps ./dest/
|
||||
@-cp $(BUILDDIR)/hostdir/binpkgs/x86_64-repodata ./dest/
|
||||
@cp -u $(BUILDDIR)/hostdir/binpkgs/*.xbps ./dest/
|
||||
@cp $(BUILDDIR)/hostdir/binpkgs/x86_64-repodata ./dest/
|
||||
|
||||
end:
|
||||
@printf "\n\n\033[1;31mRun the following commands:\033[m\n"
|
||||
@ -34,5 +37,8 @@ sync-clean:
|
||||
|
||||
build-clean:
|
||||
rm -rf ./dest
|
||||
rm -rf ./void-packages/hostdir/binpkgs/*
|
||||
|
||||
clean: sync-clean build-clean
|
||||
|
||||
.PHONY: dest
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Template file for 'XD'
|
||||
pkgname=XD
|
||||
version=3.3
|
||||
revision=1
|
||||
revision=2
|
||||
archs="x86_64"
|
||||
makedepends="git libgit2-devel pkg-config"
|
||||
depends="libgit2"
|
||||
@ -10,8 +10,8 @@ short_desc="smiley face to explain info on the shell"
|
||||
maintainer="Zachary Scheiman <me@zacharyscheiman.com>"
|
||||
license="GPL-3.0-or-later"
|
||||
homepage="https://git.squi.bid/XD"
|
||||
distfiles="https://git.squi.bid/${pkgname}/snapshot/${pkgname}-${version}.tar.gz"
|
||||
checksum=1686fd1c989674826ca378cc6f4d32ca1d5a8fd9aee4b18cf7047db6408d3e25
|
||||
distfiles="https://git.squi.bid/squibid/${pkgname}/archive/v${version}.tar.gz"
|
||||
checksum=40e5c6f4502e3980d92c8eebdd5c02d9cc18067e6e68c35b486ea195b0d9af04
|
||||
|
||||
do_build() {
|
||||
make
|
||||
|
31
srcpkgs/lutgen-studio/template
Normal file
31
srcpkgs/lutgen-studio/template
Normal file
@ -0,0 +1,31 @@
|
||||
# Template file for 'lutgen-studio'
|
||||
pkgname=lutgen-studio
|
||||
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"
|
||||
homepage="https://github.com/ozwaldorf/lutgen-rs"
|
||||
executable="https://github.com/ozwaldorf/lutgen-rs/releases/download/lutgen-studio-v${version}/lutgen-studio-v${version}-x86_64-unknown-linux-gnu"
|
||||
checksum=67ada155e12510c57dbbf910927ebbc4ea3c905b1942e92e9f4d36c8353abf6e
|
||||
|
||||
do_fetch() {
|
||||
mkdir -p $wrksrc
|
||||
curl -L ${executable} -o ${wrksrc}/lutgen-studio
|
||||
}
|
||||
|
||||
do_extract() {
|
||||
:
|
||||
}
|
||||
|
||||
do_install() {
|
||||
local package_location="usr/lib/$pkgname"
|
||||
vmkdir ${package_location}
|
||||
chmod +x lutgen-studio
|
||||
vcopy lutgen-studio ${package_location}
|
||||
vmkdir usr/bin
|
||||
ln -sfr $DESTDIR/${package_location}/lutgen-studio $DESTDIR/usr/bin/lutgen-studio
|
||||
}
|
@ -1,14 +1,24 @@
|
||||
# Template file for 'lutgen'
|
||||
pkgname=lutgen
|
||||
version=0.12.1
|
||||
revision=1
|
||||
version=1.0.1
|
||||
revision=2
|
||||
archs="x86_64"
|
||||
makedepends="curl"
|
||||
short_desc="Blazingly fast interpolated LUT generator and applicator for arbitrary and popular color palettes."
|
||||
maintainer="Zachary Scheiman <me@zacharyscheiman.com>"
|
||||
license="MIT"
|
||||
homepage="https://github.com/ozwaldorf/lutgen-rs"
|
||||
distfiles="https://github.com/ozwaldorf/lutgen-rs/releases/download/v${version}/lutgen-${version}-x86_64.tar.gz"
|
||||
checksum=97556d3537c8c1748570b4c814703bb1ec430f07da4aaedd64da4f87691a7095
|
||||
executable="https://github.com/ozwaldorf/lutgen-rs/releases/download/lutgen-v${version}/lutgen-cli-v${version}-x86_64-unknown-linux-gnu "
|
||||
checksum=d744cd4bb6033e252cff8918417f60825d080f2f24fade1fd42a1eed8be96b81
|
||||
|
||||
do_fetch() {
|
||||
mkdir -p $wrksrc
|
||||
curl -L ${executable} -o ${wrksrc}/lutgen
|
||||
}
|
||||
|
||||
do_extract() {
|
||||
:
|
||||
}
|
||||
|
||||
do_install() {
|
||||
local package_location="usr/lib/$pkgname"
|
||||
|
@ -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
23
srcpkgs/zz/template
Normal 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
|
||||
}
|
Reference in New Issue
Block a user