mirror of https://github.com/Hilbis/Hilbish
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
|
# https://taskfile.dev
|
||
|
|
||
|
version: '3'
|
||
|
|
||
|
vars:
|
||
|
PREFIX: '{{default "/usr" .PREFIX}}'
|
||
|
bindir__: '{{.PREFIX}}/bin'
|
||
|
BINDIR: '{{default .bindir__ .BINDIR}}'
|
||
|
libdir__: '{{.PREFIX}}/share/hilbish'
|
||
|
LIBDIR: '{{default .libdir__ .LIBDIR}}'
|
||
|
GOFLAGS: '-ldflags "-s -w"'
|
||
|
|
||
|
tasks:
|
||
|
default:
|
||
|
cmds:
|
||
|
- go build {{.GOFLAGS}}
|
||
|
vars:
|
||
|
GOFLAGS: '-ldflags "-s -w -X main.gitCommit=$(git rev-parse --short HEAD) -X main.gitBranch=$(git rev-parse --abbrev-ref HEAD)"'
|
||
|
|
||
|
build:
|
||
|
cmds:
|
||
|
- go build {{.GOFLAGS}}
|
||
|
|
||
|
install:
|
||
|
cmds:
|
||
|
- install -v -d "{{.DESTDIR}}{{.BINDIR}}/" && install -m 0755 -v hilbish "{{.DESTDIR}}{{.BINDIR}}/hilbish"
|
||
|
- mkdir -p "{{.DESTDIR}}{{.LIBDIR}}"
|
||
|
- cp -r libs docs emmyLuaDocs nature .hilbishrc.lua {{.DESTDIR}}{{.LIBDIR}}
|
||
|
- grep -qxF "{{.DESTDIR}}{{.BINDIR}}/hilbish" /etc/shells || echo "{{.DESTDIR}}{{.BINDIR}}/hilbish" >> /etc/shells
|
||
|
|
||
|
uninstall:
|
||
|
cmds:
|
||
|
- rm -vrf
|
||
|
"{{.DESTDIR}}{{.BINDIR}}/hilbish"
|
||
|
"{{.DESTDIR}}{{.LIBDIR}}"
|
||
|
- sed -i '/hilbish/d' /etc/shells
|