Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-18 04:12:27 -06:00
parent 9a7d8f8946
commit a33537c799
3 changed files with 11 additions and 1 deletions

View File

@ -4,6 +4,13 @@ all: build debian
build: nocui gocui andlabs
download:
go get -v go.wit.com/toolkits/debian
go get -v go.wit.com/toolkits/tree
go get -v go.wit.com/toolkits/nogui
go get -v go.wit.com/toolkits/gogui
go get -v go.wit.com/toolkits/andlabs
notes:
ifeq ($(GO111MODULE),)
@echo

2
debian/Makefile vendored
View File

@ -1,5 +1,5 @@
# GITVERSION=$(shell git rev-parse FETCH_HEAD)
GUIVERSION=$(shell cd ../../../lib/widget && git describe --tags $(git rev-list --tags --max-count=1) | sed 's/^v//')
GUIVERSION=$(shell cd ../../../widget && git describe --tags $(git rev-list --tags --max-count=1) | sed 's/^v//')
TOOLKITVERSION=$(shell git describe --tags $(git rev-list --tags --max-count=1) | sed 's/^v//')
VERSION=${TOOLKITVERSION}-gui-${GUIVERSION}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module go.wit.com/toolkits/debian
go 1.21.4