2024-09-02 21:09:26 +01:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
# See debhelper(7) (uncomment to enable).
|
|
|
|
# Output every command that modifies files on the build system.
|
|
|
|
export DH_VERBOSE = 1
|
|
|
|
override_dh_dwz:
|
|
|
|
echo "disabled"
|
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@
|
2024-12-05 22:53:50 +00:00
|
|
|
|
|
|
|
override_dh_install:
|
|
|
|
dh_install
|
|
|
|
mkdir -p debian/falcon/usr/bin/
|
|
|
|
cp -vf falcon debian/falcon/usr/bin/
|
|
|
|
chmod 755 debian/falcon/usr/bin/falcon
|
|
|
|
chmod +x debian/falcon/usr/bin/falcon
|
|
|
|
|
|
|
|
override_dh_auto_build:
|
|
|
|
zig build-exe src/main.zig -O ReleaseFast -mcpu x86_64_v3 --name falcon
|