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