2022-11-01 08:29:14 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
# Do not try to strip Go binaries and do not run test
|
|
|
|
export DEB_BUILD_OPTIONS := nostrip nocheck
|
2022-12-16 08:54:19 +00:00
|
|
|
SERVICE = frostfs-http-gw
|
2022-11-01 08:29:14 +00:00
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@
|
|
|
|
|
|
|
|
override_dh_installsystemd:
|
2023-03-24 09:35:22 +00:00
|
|
|
dh_installsystemd --no-enable --no-start $(SERVICE).service
|
2022-11-01 08:29:14 +00:00
|
|
|
|
|
|
|
override_dh_installchangelogs:
|
2023-03-24 09:35:22 +00:00
|
|
|
dh_installchangelogs -k CHANGELOG.md
|