bscreensaver/debian/rules
Brian J. Tarricone f6c1020535 Remove the need for rust nightly
My pidfd implmentation is simple enough, and Option.contains() is not
worth requiring nightly.
2022-05-14 00:17:50 -07:00

23 lines
359 B
Makefile
Executable File

#!/usr/bin/make -f
MAKE_ARGS = \
PREFIX=/usr \
SYSCONFDIR=/etc \
DESTDIR=debian/bscreensaver
%:
dh $@
override_dh_auto_clean:
@echo "HOME=$$HOME"
@echo "PATH=$$PATH"
ls $$HOME/.rustup
ls $$HOME/.cargo
dh_auto_clean -- $(MAKE_ARGS)
override_dh_auto_build:
dh_auto_build -- $(MAKE_ARGS)
override_dh_auto_install:
dh_auto_install -- $(MAKE_ARGS)