diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-12-01 16:59:41 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-12-01 16:59:41 +0300 |
commit | cdf900cf2c98b4e3fad11e8b69cd2135f2c306c7 (patch) | |
tree | da2ed9180008803fcc0500c28191d8c2643df891 /pkg/deb/Makefile | |
parent | 40eb1f8b9b2a76d76ef6a4a094bf8192a44cbe41 (diff) | |
download | unit-cdf900cf2c98b4e3fad11e8b69cd2135f2c306c7.tar.gz unit-cdf900cf2c98b4e3fad11e8b69cd2135f2c306c7.tar.bz2 |
Packaging changes for updated Go package.
- package name changed to 'nginx/unit';
- source files installed in /usr/share/gocode;
- rpm and deb go packages made noarch.
Diffstat (limited to 'pkg/deb/Makefile')
-rw-r--r-- | pkg/deb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile index fb31ad2b..6fdb667d 100644 --- a/pkg/deb/Makefile +++ b/pkg/deb/Makefile @@ -144,7 +144,7 @@ debuild-%: debuild/unit_$(VERSION).orig.tar.gz ../../docs/changes.xml > $@/$(SRCDIR)/debian/changelog cp debian/copyright debuild-$*/$(SRCDIR)/debian/ @{ \ - set -e ; \ + set -e ; \ for src in $(MODULE_SOURCES_$*); do \ cp debian.module/$${src} $@/$(SRCDIR)/debian/ ; \ done ; \ @@ -152,7 +152,7 @@ debuild-%: debuild/unit_$(VERSION).orig.tar.gz ../../docs/changes.xml prebuild=`echo "$$MODULE_PREBUILD_$*" | sed -e ':a' -e 'N' -e '$$!ba' -e "s/\n/\$$CR/g"` ; \ preinstall=`echo "$$MODULE_PREINSTALL_$*" | sed -e ':a' -e 'N' -e '$$!ba' -e "s/\n/\$$CR/g"` ; \ post=`echo "$$MODULE_POST_$*" | sed -e ':a' -e 'N' -e '$$!ba' -e "s/\n/\$$CR/g"` ; \ - cat debian.module/control.in | sed \ + cat debian.module/$(if $(MODULE_NOARCH_$*),control-noarch.in,control.in) | sed \ -e "s#%%NAME%%#unit-$(MODULE_SUFFIX_$*)#g" \ -e "s#%%SUMMARY%%#$(MODULE_SUMMARY_$*)#g" \ -e "s#%%CODENAME%%#$(CODENAME)#g" \ @@ -163,7 +163,7 @@ debuild-%: debuild/unit_$(VERSION).orig.tar.gz ../../docs/changes.xml -e "s#%%MODULE_BUILD_DEPENDS%%#$(MODULE_BUILD_DEPENDS_$*)#g" \ -e "s#%%MODULE_DEPENDS%%#$(MODULE_DEPENDS_$*)#g" \ > $@/$(SRCDIR)/debian/control ; \ - cat debian.module/rules.in | sed \ + cat debian.module/$(if $(MODULE_NOARCH_$*),rules-noarch.in,rules.in) | sed \ -e "s#%%NAME%%#unit-$(MODULE_SUFFIX_$*)#g" \ -e "s#%%CODENAME%%#$(CODENAME)#g" \ -e "s#%%UNIT_VERSION%%#$(VERSION)#g" \ |