blob: 1afe4c8881055ff44a0331585540f5f9aa3a8f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= postgresql
PKG_VERSION:= 9.4.5
PKG_RELEASE:= 1
PKG_HASH:= aa1d7918ae782a0fc5e1886fd463fc8903e5ffc3eb6d3b51500065aec988a210
PKG_DESCR:= sql database library
PKG_SECTION:= libs/db
PKG_URL:= http://www.postgresql.org/
PKG_SITES:= http://ftp.postgresql.org/pub/source/v$(PKG_VERSION)/
PKG_LIBNAME:= libpq
PKG_NOPARALLEL:= 1
PKG_OPTS:= dev
DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
include $(ADK_TOPDIR)/mk/package.mk
$(eval $(call PKG_template,LIBPQ,libpq,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
CONFIGURE_ARGS+= --disable-integer-datetimes \
--without-openssl \
--without-pam \
--without-perl \
--without-python \
--without-readline \
--without-zlib \
--without-bonjour \
--without-tcl \
--with-system-tzdata=$(STAGING_TARGET_DIR)
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
|