Skip to content
Commits on Source (2)
postgis (3.0.0~alpha1+dfsg-1~exp2) UNRELEASED; urgency=medium
* Update dh_install -a override to use --list-missing.
* Move binaries to postgis binary package.
* Remove README files before dh_install.
-- Bas Couwenberg <sebastic@debian.org> Sun, 26 May 2019 18:22:12 +0200
postgis (3.0.0~alpha1+dfsg-1~exp1) experimental; urgency=medium
* New upstream alpha release.
......
......@@ -278,10 +278,10 @@ override_dh_auto_install-arch:
> $(CURDIR)/debian/postgresql-$$PGVER-postgis-$(MAJOR_VERSION).$(MINOR_VERSION)-scripts.install; \
done)
# Copy binaries from the NEWEST_POSTGRES_VERSION build to the
# Move binaries from the NEWEST_POSTGRES_VERSION build to the
# 'postgis' binary package.
mkdir -p $(CURDIR)/debian/postgis/usr/bin
cp -r $(CURDIR)/debian/tmp/usr/lib/postgresql/$(NEWEST_POSTGRES_VERSION)/bin/* \
mv $(CURDIR)/debian/tmp/usr/lib/postgresql/$(NEWEST_POSTGRES_VERSION)/bin/* \
$(CURDIR)/debian/postgis/usr/bin/
# Move GUI binaries to 'postgis-gui' binary package
......@@ -296,7 +296,11 @@ override_dh_auto_install-arch:
$(CURDIR)/debian/postgis-gui/usr/share/
override_dh_install-arch:
dh_install -a
$(RM) $(CURDIR)/debian/tmp/usr/lib/postgresql/*/bin/*
$(RM) $(CURDIR)/debian/tmp/usr/share/doc/postgis/README.postgis
$(RM) $(CURDIR)/debian/tmp/usr/share/doc/postgresql-doc-*/extension/README.address_standardizer
dh_install -a --list-missing
override_dh_makeshlibs:
dh_makeshlibs -Xusr/lib/postgis -- -v$(UPSTREAM_VERSION)
......