Brian J. Tarricone
aafe026092
I gave up on getting it to build on bullseye, as its cargo/rustc is too old for the 2021 edition. Building newer deb packages of rust is apparently a difficult, manual process. I tried installing rustup and pulling the latest compiler, but that failed with strange errors that I am tired of debugging.
19 lines
280 B
Makefile
Executable File
19 lines
280 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
MAKE_ARGS = \
|
|
PREFIX=/usr \
|
|
SYSCONFDIR=/etc \
|
|
DESTDIR=debian/bscreensaver
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_clean:
|
|
dh_auto_clean -- $(MAKE_ARGS)
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build -- $(MAKE_ARGS)
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- $(MAKE_ARGS)
|