Fixes (#819)
[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.1
5 TERMUX_PKG_SRCURL=https://ftp.postgresql.org/pub/source/v$TERMUX_PKG_VERSION/postgresql-$TERMUX_PKG_VERSION.tar.bz2
6 TERMUX_PKG_SHA256=e5101e0a49141fc12a7018c6dad594694d3a3325f5ab71e93e0e51bd94e51fcd
7 TERMUX_PKG_DEPENDS="openssl, libcrypt, readline"
8 TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" --without-gssapi --with-readline --with-openssl --with-system-tzdata=/system/usr/share/zoneinfo"
9 TERMUX_PKG_EXTRA_MAKE_ARGS=" -s"
10
11 termux_step_pre_configure () {
12 # to use shmem and sem stubs
13 #CPPFLAGS="$CPPFLAGS -DTERMUX_SHMEM_STUBS -DTERMUX_SEMOPS_STUBS -DEXEC_BACKEND"
14 CFLAGS="$CFLAGS -DTERMUX_SHMEM_STUBS=1 -DTERMUX_SEMOPS_STUBS=1"
15 LDFLAGS="$LDFLAGS -llog"
16 }
17