mirror of
https://github.com/joleuger/vuinputd.git
synced 2026-07-18 09:47:27 +00:00
11 lines
237 B
Makefile
Executable File
11 lines
237 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
%:
|
|
dh $@ --with cargo
|
|
|
|
override_dh_auto_build:
|
|
cargo build --release
|
|
|
|
override_dh_auto_install:
|
|
install -D -m 0755 target/release/vuinputd debian/tmp/usr/bin/vuinputd
|