Renaud Lepage
daf90e4420
Some checks failed
PikaOS Package Build Only (Canary) (amd64-v3) / build (push) Failing after 1m46s
Reviewed-on: #4 Co-authored-by: Renaud Lepage <root@cybikbase.com> Co-committed-by: Renaud Lepage <root@cybikbase.com>
16 lines
702 B
Makefile
16 lines
702 B
Makefile
all:
|
|
true
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)/usr/bin/
|
|
cd ./generator ; go build -trimpath -buildmode=pie -buildvcs=false -mod=readonly -modcacherw -o ./generator
|
|
cd ./init ; CGO_ENABLED=0 go build -trimpath -buildvcs=false -mod=readonly -modcacherw -o ./init
|
|
ronn docs/manpage.md
|
|
mkdir "$(DESTDIR)/etc/"
|
|
touch "$(DESTDIR)/etc/booster.yaml"
|
|
install -Dp -m755 ./generator/generator "$(DESTDIR)/usr/bin/booster"
|
|
install -Dp -m644 ./docs/manpage.1 "$(DESTDIR)/usr/share/man/man1/booster.1"
|
|
install -Dp -m755 ./init/init "$(DESTDIR)/usr/lib/booster/init"
|
|
install -Dp -m755 ./update-initramfs "$(DESTDIR)/usr/lib/booster/update-initramfs"
|
|
install -Dp -m755 ./booster.yml "$(DESTDIR)/etc/booster.yaml"
|