postgresql: Build man pages and minor tweaks
[termux-packages] / disabled-packages / postgresql / build.sh
1 TERMUX_PKG_HOMEPAGE=https://www.postgresql.org
2 TERMUX_PKG_DESCRIPTION="Object-relational SQL database"
3 TERMUX_PKG_MAINTAINER='Vishal Biswas @vishalbiswas'
4 TERMUX_PKG_VERSION=9.6.2
5 TERMUX_PKG_SRCURL=https://ftp.postgresql.org/pub/source/v$TERMUX_PKG_VERSION/postgresql-$TERMUX_PKG_VERSION.tar.bz2
6 TERMUX_PKG_SHA256=0187b5184be1c09034e74e44761505e52357248451b0c854dddec6c231fe50c9
7 TERMUX_PKG_DEPENDS="openssl, libcrypt, readline, libandroid-shmem"
8 # - pgac_cv_prog_cc_ldflags__Wl___as_needed: Inform that the linker supports as-needed. It's
9 # not stricly necessary but avoids unnecessary linking of binaries.
10 # - USE_UNNAMED_POSIX_SEMAPHORES: Avoid using System V semaphores which are disabled on Android.
11 # - with-system-tzdata: Doesn't currently work as Android uses a single timezone file. But
12 # if not specified the build uses zic to build timezone files using hard links, which doesn't
13 # work on Android 6.0+. TODO: Either patch to work with the combined timezone file, or
14 # replace the hard links with symlinks.
15 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
16 pgac_cv_prog_cc_ldflags__Wl___as_needed=yes
17 USE_UNNAMED_POSIX_SEMAPHORES=1
18 --with-openssl
19 --with-system-tzdata=/system/usr/share/zoneinfo
20 "
21 TERMUX_PKG_EXTRA_MAKE_ARGS=" -s"
22 TERMUX_PKG_RM_AFTER_INSTALL="lib/libecpg* bin/ecpg share/man/man1/ecpg.1"
23
24 termux_step_post_make_install() {
25 # Man pages are not installed by default:
26 make -C doc/src/sgml install-man
27
28 # Sync with postgresql-contrib.subpackage.sh:
29 for contrib in hstore pgcrypto pg_stat_statements; do
30 (cd contrib/$contrib && make -s -j $TERMUX_MAKE_PROCESSES install)
31 done
32 }