You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
596 B
27 lines
596 B
# renovate: datasource=github-releases depName=ViViDboarder/vaultwarden_ldap |
|
export BUILD_VERSION ?= v0.6.2 |
|
export DEBIAN_FRONTEND ?= noninteractive |
|
export LANG ?= C.UTF-8 |
|
export TZ ?= UTC |
|
SRC := src |
|
|
|
.PHONY: all |
|
all: build |
|
|
|
.PHONY: build |
|
build: build-src build-bin |
|
|
|
.PHONY: build-src |
|
build-src: |
|
mkdir -p $(SRC); \ |
|
curl -sSL "https://github.com/ViViDboarder/vaultwarden_ldap/archive/$${BUILD_VERSION}.tar.gz" | tar xz -C $(SRC) --strip-components=1 |
|
|
|
.PHONY: build-bin |
|
build-bin: |
|
rustup set profile minimal && \ |
|
cd $(SRC) && \ |
|
cargo build -j 8 --release |
|
|
|
.PHONY: clean |
|
clean: |
|
rm -rf $(SRC)
|
|
|