2022-11-01 07:27:24 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
# Do not try to strip Go binaries
|
|
|
|
export DEB_BUILD_OPTIONS := nostrip
|
2022-12-15 14:29:54 +00:00
|
|
|
SERVICE = frostfs-s3-gw
|
2022-11-01 07:27:24 +00:00
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@
|
|
|
|
|
|
|
|
override_dh_installsystemd:
|
2023-03-24 12:49:23 +00:00
|
|
|
dh_installsystemd --no-enable --no-start $(SERVICE).service
|
2022-11-01 07:27:24 +00:00
|
|
|
|
|
|
|
override_dh_installchangelogs:
|
2023-03-24 12:49:23 +00:00
|
|
|
dh_installchangelogs -k CHANGELOG.md
|