chiark / gitweb /
busybox: Update from 1.28.2 to 1.28.3
[termux-packages] / 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=10.3
5 TERMUX_PKG_REVISION=1
6 TERMUX_PKG_SHA256=6ea268780ee35e88c65cdb0af7955ad90b7d0ef34573867f223f14e43467931a
7 TERMUX_PKG_SRCURL=https://ftp.postgresql.org/pub/source/v$TERMUX_PKG_VERSION/postgresql-$TERMUX_PKG_VERSION.tar.bz2
8 TERMUX_PKG_DEPENDS="openssl, libcrypt, readline, libandroid-shmem"
9 # - pgac_cv_prog_cc_ldflags__Wl___as_needed: Inform that the linker supports as-needed. It's
10 #   not stricly necessary but avoids unnecessary linking of binaries.
11 # - USE_UNNAMED_POSIX_SEMAPHORES: Avoid using System V semaphores which are disabled on Android.
12 # - ZIC=...: The zic tool is used to build the time zone database bundled with postgresql.
13 #   We specify a binary built in termux_step_host_build which has been patched to use symlinks
14 #   over hard links (which are not supported as of Android 6.0+).
15 #   There exists a --with-system-tzdata configure flag, but that does not work here as Android
16 #   uses a custom combined tzdata file.
17 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
18 pgac_cv_prog_cc_ldflags__Wl___as_needed=yes
19 USE_UNNAMED_POSIX_SEMAPHORES=1
20 --with-openssl
21 ZIC=$TERMUX_PKG_HOSTBUILD_DIR/src/timezone/zic
22 "
23 TERMUX_PKG_EXTRA_MAKE_ARGS=" -s"
24 TERMUX_PKG_RM_AFTER_INSTALL="lib/libecpg* bin/ecpg share/man/man1/ecpg.1"
25 TERMUX_PKG_HOSTBUILD=yes
26
27 termux_step_host_build() {
28         # Build a native zic binary which we have patched to
29         # use symlinks instead of hard links.
30         $TERMUX_PKG_SRCDIR/configure --without-readline
31         make ./src/timezone/zic
32 }
33
34 termux_step_post_make_install() {
35         # Man pages are not installed by default:
36         make -C doc/src/sgml install-man
37
38         # Sync with postgresql-contrib.subpackage.sh:
39         for contrib in \
40                 hstore \
41                 pageinspect \
42                 pgcrypto \
43                 pgrowlocks \
44                 pg_freespacemap \
45                 pg_stat_statements\
46                 fuzzystrmatch \
47                 ; do
48                 (cd contrib/$contrib && make -s -j $TERMUX_MAKE_PROCESSES install)
49         done
50 }
51
52 termux_step_post_massage() {
53         # Remove bin/pg_config so e.g. php doesn't try to use it, which won't
54         # work as it's a cross-compiled binary:
55         rm $TERMUX_PREFIX/bin/pg_config
56 }