blob: ecaad6a11f76f30dc31240d57adc36fdb219b02e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
.PHONY: build
# this is how the mirrors.wit.com debian package is created
all: build
build:
go-deb --repo .
# use the ncurses gui (only kinda works still)
ncurses:
go-deb --gui gocui --repo .
|