Support PREFIX environment variable (#308)

This commit is contained in:
Dario Vladović 2020-07-20 16:33:29 +02:00 committed by GitHub
parent 0b9268ada7
commit f00aa08417
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,5 @@
VERSION?=$(shell git describe --tags --dirty | cut -c 2-)
PREFIX ?= /usr/local
VERSION ?= $(shell git describe --tags --dirty | cut -c 2-)
IS_SNAPSHOT = $(if $(findstring -, $(VERSION)),true,false)
MAJOR_VERSION = $(word 1, $(subst ., ,$(VERSION)))
MINOR_VERSION = $(word 2, $(subst ., ,$(VERSION)))
@ -15,8 +16,8 @@ test:
$(ACT)
install: build
@cp dist/local/act /usr/local/bin/act
@chmod 755 /usr/local/bin/act
@cp dist/local/act $(PREFIX)/bin/act
@chmod 755 $(PREFIX)/bin/act
@act --version
installer: