20 lines
359 B
Makefile
Executable File
20 lines
359 B
Makefile
Executable File
#! /usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
@if ! command -v cargo >/dev/null; then \
|
|
echo "Rust is not installed ("cargo" command not found)" >&2; \
|
|
exit 1; fi
|
|
cargo build --release
|
|
|
|
override_dh_auto_clean:
|
|
|
|
override_dh_installsystemd:
|
|
|
|
override_dh_installinit:
|
|
dh_installinit --name webdav-server
|
|
dh_installsystemd --name webdav-server
|
|
|