cosmic-greeter/debian/rules

23 lines
441 B
Text
Raw Normal View History

2023-10-03 07:52:34 -06:00
#!/usr/bin/make -f
export DESTDIR = debian/cosmic-greeter
export VENDOR ?= 1
%:
dh $@
override_dh_auto_clean:
if ! ischroot && test "${VENDOR}" = "1"; then \
mkdir -p .cargo; \
cargo vendor | head -n -1 > .cargo/config; \
echo 'directory = "vendor"' >> .cargo/config; \
tar pcf vendor.tar vendor; \
rm -rf vendor; \
fi
override_dh_auto_build:
just build-vendored
override_dh_auto_install:
just rootdir=$(DESTDIR) install