17 lines
293 B
Text
17 lines
293 B
Text
|
#!/usr/bin/make -f
|
||
|
|
||
|
# Do not try to strip Go binaries
|
||
|
export DEB_BUILD_OPTIONS := nostrip
|
||
|
SERVICE = neofs-s3-gw
|
||
|
|
||
|
%:
|
||
|
dh $@
|
||
|
|
||
|
override_dh_installsystemd:
|
||
|
dh_installsystemd --no-enable --no-start $(SERVICE).service
|
||
|
|
||
|
override_dh_installchangelogs:
|
||
|
dh_installchangelogs -k CHANGELOG.md
|
||
|
|
||
|
|