2024-11-16 09:49:49 -06:00
|
|
|
.PHONY: build
|
|
|
|
|
|
|
|
all: build
|
|
|
|
|
|
|
|
build:
|
|
|
|
go-deb --repo .
|
2024-11-16 10:30:30 -06:00
|
|
|
|
2024-11-19 04:37:20 -06:00
|
|
|
# keep the files/ directory after the package is made
|
|
|
|
keep-files:
|
|
|
|
go-deb --keep-files --repo .
|
|
|
|
|
2024-11-16 10:30:30 -06:00
|
|
|
# use the ncurses gui (only kinda works still)
|
|
|
|
ncurses:
|
|
|
|
go-deb --gui gocui --repo .
|
|
|
|
|