1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#!/usr/bin/make -f
include /usr/share/dpkg/default.mk
include /usr/share/rustc/architecture.mk
# broken symlinks after getting copied to under .pybuild
export PYBUILD_TEST_ARGS = -k "not test_unix_symlink and not test_unix_etc_timezone_dir"
export PYBUILD_NAME = pendulum
export DEB_HOST_RUST_TYPE DEB_HOST_GNU_TYPE
export CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
export CARGO=/usr/share/cargo/bin/cargo
export CARGO_HOME=$(CURDIR)/debian/cargo_home
export DEB_CARGO_CRATE=$(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM)
%:
dh $@ --buildsystem=pybuild
execute_before_dh_auto_configure:
$(CARGO) prepare-debian debian/cargo_registry --link-from-system
execute_after_dh_install:
ln -sf rust/target target
/usr/share/cargo/bin/dh-cargo-built-using python3-pendulum
|