- Add MIT License for maximum permissivity - Update Cargo.toml with complete package metadata including license - Update README.md with license information and explanation - Fix Debian package systemd service installation conflict (remove manual installation, let debhelper handle it automatically) The MIT License allows anyone to use, modify, and distribute this software with minimal restrictions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
No EOL
294 B
Makefile
Executable file
18 lines
No EOL
294 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
cargo build --release
|
|
|
|
override_dh_auto_test:
|
|
cargo test
|
|
|
|
override_dh_auto_clean:
|
|
cargo clean || true
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install
|
|
# Install config file
|
|
install -D -m 644 debian/naas.default debian/naas/etc/default/naas
|