mirror of
https://github.com/uutils/shadow.git
synced 2026-06-10 16:14:57 -07:00
a1c06e39da
* ci: add .pre-commit-config.yaml * Make debian/rules executable
13 lines
206 B
Makefile
Executable File
13 lines
206 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
cargo build --release
|
|
|
|
override_dh_auto_install:
|
|
$(MAKE) DESTDIR=debian/shadow-rs PREFIX=/usr install
|
|
|
|
override_dh_auto_test:
|
|
cargo test --workspace
|