- Add comprehensive build-artifacts.yml workflow with Forgejo Package Registry upload - Add simple-build.yml workflow for basic artifact management - Update README.md with workflow documentation and setup instructions - Fix debian/rules to correctly create bootupctl symlink to /usr/libexec/bootupd - Improve error handling and validation throughout the codebase - Remove unused functions and imports - Update documentation to clarify bootupd is not a daemon - Fix binary layout to match RPM packaging pattern
15 lines
479 B
Makefile
Executable file
15 lines
479 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
dh_cargo build --release
|
|
|
|
override_dh_auto_install:
|
|
dh_cargo install --target-dir=target/release
|
|
# Install systemd service files
|
|
install -D -m 644 systemd/bootupd.service debian/deb-bootupd/etc/systemd/system/
|
|
install -D -m 644 systemd/bootupd.socket debian/deb-bootupd/etc/systemd/system/
|
|
# Create symlink for multicall binary (following RPM pattern)
|
|
ln -sf /usr/libexec/bootupd debian/deb-bootupd/usr/bin/bootupctl
|