vaultwarden/Makefile

30 lines
715 B
Makefile
Raw Normal View History

2020-10-17 21:23:13 +02:00
# renovate: datasource=github-releases depName=dani-garcia/bitwarden_rs
2020-10-17 22:42:40 +02:00
export BUILD_VERSION ?= 1.17.0
2020-02-22 17:04:30 +01:00
export DEBIAN_FRONTEND ?= noninteractive
export LANG ?= C.UTF-8
export TZ ?= UTC
2020-10-17 23:17:18 +02:00
DB ?= sqlite,postgresql
2020-02-22 16:58:35 +01:00
SRC := src
.PHONY: all
all: build
.PHONY: build
build: build-src build-bin
.PHONY: build-src
build-src:
mkdir -p $(SRC); \
2020-02-22 17:04:30 +01:00
curl -sSL "https://github.com/dani-garcia/bitwarden_rs/archive/$${BUILD_VERSION##v}.tar.gz" | tar xz -C $(SRC) --strip-components=1
2020-02-22 16:58:35 +01:00
.PHONY: build-bin
build-bin:
2020-06-04 14:58:04 +02:00
rustup set profile minimal && \
2020-02-22 16:58:35 +01:00
cd $(SRC) && \
2020-06-04 14:58:04 +02:00
rustup target add x86_64-unknown-linux-musl && \
BWRS_VERSION="$${BUILD_VERSION##v}" cargo build -j 8 --features $(DB) --release
2020-02-22 16:58:35 +01:00
.PHONY: clean
clean:
rm -rf $(SRC)