diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-05-13 22:27:11 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-05-13 22:27:48 +0200 |
commit | 71242d66a32a9e3e552c9cee6d6f6e703ff0797b (patch) | |
tree | 4fde8a4656be336d8e81330e5d4cc226170a31fe /package/postgresql | |
parent | bf62091b68e248270e432d935709ca5c95d1ae16 (diff) |
rework post-install
Be sure to execute post-install as last step after
populating staging dir.
Diffstat (limited to 'package/postgresql')
-rw-r--r-- | package/postgresql/Makefile | 5 | ||||
-rw-r--r-- | package/postgresql/files/pg_config | 19 |
2 files changed, 24 insertions, 0 deletions
diff --git a/package/postgresql/Makefile b/package/postgresql/Makefile index b28d4e85e..f60f7d8a7 100644 --- a/package/postgresql/Makefile +++ b/package/postgresql/Makefile @@ -36,4 +36,9 @@ libpq-install: $(INSTALL_DIR) $(IDIR_LIBPQ)/usr/lib $(CP) $(WRKINST)/usr/lib/libpq.so* $(IDIR_LIBPQ)/usr/lib +post-install: + PATH='$(HOST_PATH)' sed -e "s#@@STAGING_TARGET_DIR@@#$(STAGING_TARGET_DIR)#" \ + ./files/pg_config > $(STAGING_HOST_DIR)/usr/bin/pg_config + -rm $(STAGING_TARGET_DIR)/usr/bin/pg_config + include $(ADK_TOPDIR)/mk/pkg-bottom.mk diff --git a/package/postgresql/files/pg_config b/package/postgresql/files/pg_config new file mode 100644 index 000000000..0d82c24a1 --- /dev/null +++ b/package/postgresql/files/pg_config @@ -0,0 +1,19 @@ +#!/bin/sh + +# +# Minimal pg_config implementation as replacement for the native pg_config application +# Only implements --includedir and --libdir +# + +prefix=@@STAGING_TARGET_DIR@@/usr + +case "$1" in + --includedir) + echo "$prefix/include" + ;; + --libdir) + echo "$prefix/lib" + ;; + *) + echo "Usage: $0 {--includedir|--libdir}" +esac |