1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
include /usr/share/dpkg/architecture.mk
include /usr/share/rustc/architecture.mk
export DEB_HOST_RUST_TYPE DEB_HOST_GNU_TYPE
export CARGO=/usr/share/cargo/bin/cargo
export CARGO_NET_OFFLINE=true
export CARGO_HOME=$(CURDIR)/debian/cargo_home
export DEB_CARGO_CRATE=$(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM)
export PYBUILD_NAME=zxcvbn-rs-py
%:
dh $@ --buildsystem=pybuild
execute_before_dh_auto_configure:
$(CARGO) prepare-debian debian/cargo_registry --link-from-system
mv Cargo.lock debian/
execute_after_dh_auto_build:
mv debian/Cargo.lock .
|