gospt/Makefile

25 lines
264 B
Makefile
Raw Normal View History

2023-01-09 06:01:01 +00:00
hashes: build
2023-01-09 06:11:44 +00:00
sha256sum gospt
2023-01-09 06:01:01 +00:00
srcinfo:
2023-01-09 06:33:30 +00:00
cd aur && makepkg -g >> PKGBUILD
2023-01-09 06:01:01 +00:00
2023-01-07 07:42:00 +00:00
build:
2023-01-09 06:22:19 +00:00
go build -o gospt .
2023-01-07 07:42:00 +00:00
run:
go run main.go
tidy:
go mod tidy
clean:
rm -rf bin
uninstall:
rm -f /usr/local/bin/${BINARY_NAME}
install:
cp bin/${BINARY_NAME} /usr/local/bin