Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
S
Sebastian Martinez
debian: add missing env variables to debian build
CI — 0 passed, 1 failed
z6Mki2ag...Tyuy failure
10 months ago 570bfc3bbd7692f7aa4fa28fae0ccd5c348b5532 History
heartwood debian rules
#!/usr/bin/make -f

DEB_BUILD_OPTIONS=nostrip
export RADICLE_VERSION=$(shell build/version)
export GIT_HEAD=$(shell git rev-parse HEAD)

%:
	dh $@

override_dh_auto_build:
	scripts/build-man-pages.sh . *.adoc

override_dh_auto_install:
	mkdir -p debian/radicle/usr
	cargo install --offline --locked --path=crates/radicle-cli --root=debian/radicle/usr
	cargo install --offline --locked --path=crates/radicle-node --root=debian/radicle/usr
	cargo install --offline --locked --path=crates/radicle-remote-helper --root=debian/radicle/usr
	find debian/radicle -name '.crates*' -delete

override_dh_auto_test:
	echo tests are disabled, for now