blob: 62f5e5c9797f4a3477f8be0ba9563f75facada50 (
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
45
|
# 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.6.3
PKG_RELEASE:= 1
PKG_HASH:= df088372230b1dd21d87bb81686471508f4c42094d4f4f32b5d8e686fea69fa6
PKG_DESCR:= postgresql 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_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)))
TARGET_CFLAGS:= $(filter-out -ffast-math,$(TARGET_CFLAGS))
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
|