Compare commits

..

1 commit

Author SHA1 Message Date
671c40c2ec update XD 2025-09-07 23:23:47 -05:00
3 changed files with 3 additions and 26 deletions

View file

@ -7,12 +7,10 @@ all: sync $(PACKAGES) dest end
$(info TEMPLATES: $(TEMPLATES))
$(info PACKAGES: $(PACKAGES))
$(info BUILDDIR: $(BUILDDIR))
$(BUILDDIR)/%: srcpkgs/%
@echo "Building package: $<"
@echo $(BUILDDIR)/srcpkgs/$<
@rm -rf $(BUILDDIR)/$<
@rm -rf $(BUILDDIR)/srcpkgs/$<
@cp -ru $< $(BUILDDIR)/srcpkgs/
@cd $(BUILDDIR) && ./xbps-src clean $<
@cd $(BUILDDIR) && ./xbps-src pkg $<
@ -31,9 +29,7 @@ sync: sync-build
sync-fetch:
test -d $(BUILDDIR) || git clone --depth=1 https://github.com/void-linux/void-packages.git $^
sync-update: sync-fetch
@cd $(BUILDDIR) && git stash >/dev/null 2>&1
@cd $(BUILDDIR) && git pull
@cd $(BUILDDIR) && git stash pop >/dev/null 2>&1
sync-build: sync-update
@cd $(BUILDDIR) && ./xbps-src binary-bootstrap
sync-clean:

View file

@ -1,6 +1,6 @@
# Template file for 'XD'
pkgname=XD
version=3.3
version=4.1
revision=2
archs="x86_64"
makedepends="git libgit2-devel pkg-config"
@ -11,7 +11,7 @@ maintainer="Zachary Scheiman <me@zacharyscheiman.com>"
license="GPL-3.0-or-later"
homepage="https://git.squi.bid/XD"
distfiles="https://git.squi.bid/squibid/${pkgname}/archive/v${version}.tar.gz"
checksum=40e5c6f4502e3980d92c8eebdd5c02d9cc18067e6e68c35b486ea195b0d9af04
checksum=f6cc1dcd85748bc85415d1052e861b7c4f959b271d1b6b16b5b1ac4c9f53f4a4
do_build() {
make

View file

@ -1,19 +0,0 @@
# Template file for 'zig'
pkgname=zig
version=0.15.1
revision=1
archs="x86_64"
short_desc="Programming language designed for robustness, optimality, and clarity"
maintainer="Zachary Scheiman <me@zacharyscheiman.com>"
license="MIT"
homepage="https://ziglang.org"
distfiles="https://ziglang.org/download/${version}/zig-x86_64-linux-${version}.tar.xz"
checksum=c61c5da6edeea14ca51ecd5e4520c6f4189ef5250383db33d01848293bfafe05
do_install() {
vdoc doc/langref.html
vlicense LICENSE
vbin zig
vmkdir usr/share/lib
vcopy lib usr/share/lib/zig
}