forked from TrueCloudLab/frostfs-http-gw
Dmitriy Zabolotskiy
f88fe1092d
Debian package includes: - user creation; - directories and permissions; - unit file for systemd Signed-off-by: Dmitriy Zabolotskiy <d.zabolotskiy@yadro.com>
16 lines
323 B
Makefile
Executable file
16 lines
323 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
# Do not try to strip Go binaries and do not run test
|
|
export DEB_BUILD_OPTIONS := nostrip nocheck
|
|
SERVICE = neofs-http-gw
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_installsystemd:
|
|
dh_installsystemd --no-enable --no-start $(SERVICE).service
|
|
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs -k CHANGELOG.md
|
|
|
|
|