2024-06-18 18:21:03 -04:00
|
|
|
binary := "gt"
|
2024-07-31 00:06:32 -04:00
|
|
|
version := "0.0.1"
|
2024-06-18 18:21:03 -04:00
|
|
|
build_dir := "bin"
|
2024-07-31 00:06:32 -04:00
|
|
|
dist_dir := "dist"
|
2024-06-18 18:21:03 -04:00
|
|
|
cmd := "."
|
|
|
|
output := "." / build_dir / binary
|
2024-07-31 00:06:32 -04:00
|
|
|
dist := "." / dist_dir / binary
|
2024-06-18 18:21:03 -04:00
|
|
|
|
|
|
|
# do the thing
|
|
|
|
default: test check install
|
|
|
|
|
|
|
|
# build binary
|
|
|
|
build:
|
|
|
|
go build -o {{output}} {{cmd}}
|
|
|
|
|
2024-07-31 00:06:32 -04:00
|
|
|
package:
|
|
|
|
go build -o {{binary}}
|
|
|
|
distrobox enter alpine -- go build -o {{binary}}-musl {{cmd}}
|
|
|
|
tar cafv {{dist_dir}}/{{binary}}-{{version}}-x86_64.tar.gz {{binary}} README.md LICENSE
|
|
|
|
tar cafv {{dist_dir}}/{{binary}}-{{version}}-x86_64-musl.tar.gz {{binary}}-musl README.md LICENSE
|
|
|
|
rm {{binary}} {{binary}}-musl
|
2024-06-18 18:21:03 -04:00
|
|
|
|
|
|
|
# run from source
|
|
|
|
run:
|
|
|
|
go run {{cmd}}
|
|
|
|
|
|
|
|
# build 'n run
|
|
|
|
run-binary: build
|
|
|
|
exec {{output}}
|
|
|
|
|
|
|
|
# run with args
|
|
|
|
run-args args:
|
|
|
|
go run {{cmd}} {{args}}
|
|
|
|
|
|
|
|
# install binary into $GOPATH
|
|
|
|
install:
|
|
|
|
go install {{cmd}}
|
|
|
|
|
2024-07-30 22:55:55 -04:00
|
|
|
# install manpages into $HOME/.local/share/man
|
|
|
|
install-man:
|
|
|
|
mkdir -p $HOME/.local/share/man/man1
|
|
|
|
cp {{binary}}.1 $HOME/.local/share/man/man1/{{binary}}.1
|
|
|
|
|
2024-06-18 18:21:03 -04:00
|
|
|
# clean up after yourself
|
|
|
|
clean:
|
2024-07-31 00:06:32 -04:00
|
|
|
-rm {{output}}
|
|
|
|
-rm {{output}}-musl
|
2024-07-31 00:54:22 -04:00
|
|
|
-rm {{dist_dir}}/*.tar.gz
|
2024-06-18 18:21:03 -04:00
|
|
|
|
|
|
|
# run go tests
|
|
|
|
test:
|
|
|
|
gotestsum
|
|
|
|
|
|
|
|
# run linter
|
|
|
|
check:
|
|
|
|
staticcheck ./...
|
2024-07-30 22:55:55 -04:00
|
|
|
|
|
|
|
# generate manpage
|
|
|
|
man:
|
|
|
|
scdoc < {{binary}}.1.scd > {{binary}}.1
|