# Maintainer: Marc Rechté pkgbase=postgresql14 pkgver=14.12 _majorver=${pkgver%.*} pkgname=("${pkgbase}-libs" "${pkgbase}-docs" "${pkgbase}") pkgrel=1 pkgdesc='Sophisticated object-relational DBMS' url='https://www.postgresql.org/' arch=('x86_64') license=('custom:PostgreSQL') # see bug 17943, which requires llvm15/clang15 instead of current version 16: https://www.postgresql.org/message-id/17943-56bb8c6bd4409b9f%40postgresql.org makedepends=('krb5' 'libxml2' 'python' 'perl' 'tcl>=8.6.0' 'openssl>=1.0.0' 'pam' 'zlib' 'icu' 'systemd' 'libldap' 'llvm15' 'clang15' 'libxslt') source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2 postgresql.service postgresql-check-db-dir postgresql.sysusers postgresql.tmpfiles pgenv.sh postgresql-run-socket.patch postgresql-perl-rpath.patch) sha256sums=('6118d08f9ddcc1bd83cf2b7cc74d3b583bdcec2f37e6245a8ac003b8faa80923' '5f45d2ad3a93f5ea87ea40bc82a5377e5b8faca9586bfa84d4efe05bdd90ebb6' 'e0445d31cbafe6a06af38224d4e6ff976cc8977d140adadc99a2e11f2152a485' '7fa8f0ef3f9d40abd4749cc327c2f52478cb6dfb6e2405bd0279c95e9ff99f12' '665c692161edee50ca0d8c3aae4a39a39c96ce2878cab30dbac4c6f4443c0cbc' 'c0e84a98a6241fad578ea6e862e24637fec1ed9e820ce1f3826af1c2869ba55d' '02ffb53b0a5049233f665c873b96264db77daab30e5a2194d038202d815a8e6a' 'af6186d40128e043f333da4591455bf62b7c96e80214835f5c8c60b635ea9afb') prepare() { cd postgresql-${pkgver} patch -p1 < ../postgresql-run-socket.patch patch -p1 < ../postgresql-perl-rpath.patch } build() { cd postgresql-${pkgver} local options=( --prefix=/opt/${pkgbase} --sysconfdir=/etc --with-gssapi --with-libxml --with-openssl --with-perl --with-python --with-tcl --with-pam --with-system-tzdata=/usr/share/zoneinfo --with-uuid=e2fs --with-icu --with-systemd --with-ldap --with-llvm --with-libxslt --enable-nls --enable-thread-safety --disable-rpath ) # regular build with everything ./configure "${options[@]}" make world } _postgres_check() { LANG=C make "${1}" || (find . -name regression.diffs | \ while read -r line; do echo "make ${1} failure: ${line}" cat "${line}" done; exit 1) } check() { cd postgresql-${pkgver} _postgres_check check _postgres_check check-world } package_postgresql14-libs() { pkgdesc="Libraries for use with PostgreSQL" depends=('krb5' 'openssl>=1.0.0' 'readline>=6.0' 'zlib' 'libldap') provides=("${pkgbase}-client" 'libpq.so' 'libecpg.so' 'libecpg_compat.so' 'libpgtypes.so') conflicts=("${pkgbase}-client") pushd postgresql-${pkgver} # install license install -Dm 644 COPYRIGHT -t "${pkgdir}/opt/${pkgbase}/share/licenses/${pkgname}" # install libs and non-server binaries for dir in src/interfaces src/bin/pg_config src/bin/pg_dump src/bin/psql src/bin/scripts; do make -C ${dir} DESTDIR="${pkgdir}" install done for util in pg_config pg_dump pg_dumpall pg_restore psql \ clusterdb createdb createuser dropdb dropuser pg_isready reindexdb vacuumdb; do install -Dm 644 doc/src/sgml/man1/${util}.1 "${pkgdir}"/opt/${pkgbase}/share/man/man1/${util}.1 done cd src/include install -d "${pkgdir}"/opt/${pkgbase}/include/{libpq,postgresql/internal/libpq} # these headers are needed by the public headers of the interfaces install -m 644 pg_config.h "${pkgdir}/opt/${pkgbase}/include" install -m 644 pg_config_os.h "${pkgdir}/opt/${pkgbase}/include" install -m 644 pg_config_ext.h "${pkgdir}/opt/${pkgbase}/include" install -m 644 postgres_ext.h "${pkgdir}/opt/${pkgbase}/include" install -m 644 libpq/libpq-fs.h "${pkgdir}/opt/${pkgbase}/include/libpq" install -m 644 pg_config_manual.h "${pkgdir}/opt/${pkgbase}/include" # these he aders are needed by the not-so-public headers of the interfaces install -m 644 c.h "${pkgdir}/opt/${pkgbase}/include/postgresql/internal" install -m 644 port.h "${pkgdir}/opt/${pkgbase}/include/postgresql/internal" install -m 644 postgres_fe.h "${pkgdir}/opt/${pkgbase}/include/postgresql/internal" install -m 644 libpq/pqcomm.h "${pkgdir}/opt/${pkgbase}/include/postgresql/internal/libpq" # this utility is to be sourced in order to find proper libs and bins popd install -m 755 pgenv.sh "${pkgdir}/opt/${pkgbase}/bin" } package_postgresql14-docs() { pkgdesc="HTML documentation for PostgreSQL" options=('docs') cd postgresql-${pkgver} install -Dm 644 COPYRIGHT -t "${pkgdir}/opt/${pkgbase}/share/licenses/${pkgname}" make -C doc/src/sgml DESTDIR="${pkgdir}" install-html chown -R root:root "${pkgdir}/opt/${pkgbase}/share/doc/html" # clean up rmdir "${pkgdir}"/opt/${pkgbase}/share/man/man{1,3,7} rmdir "${pkgdir}"/opt/${pkgbase}/share/man } package_postgresql14() { pkgdesc='Sophisticated object-relational DBMS' # backup=('etc/pam.d/postgresql' 'etc/logrotate.d/postgresql') depends=("${pkgbase}-libs>=${pkgver}" 'krb5' 'libxml2' 'readline>=6.0' 'openssl>=1.0.0' 'pam' 'icu' 'systemd-libs' 'libldap' 'llvm-libs' 'libxslt') optdepends=('python: for PL/Python 3 support' 'perl: for PL/Perl support' 'tcl: for PL/Tcl support') options=('staticlibs') install=postgresql.install pushd postgresql-${pkgver} # install make DESTDIR="${pkgdir}" install make -C contrib DESTDIR="${pkgdir}" install make -C doc/src/sgml DESTDIR="${pkgdir}" install-man # we don't want these, they are in the -libs package for dir in src/interfaces src/bin/pg_config src/bin/pg_dump src/bin/psql src/bin/scripts; do make -C ${dir} DESTDIR="${pkgdir}" uninstall done for util in pg_config pg_dump pg_dumpall pg_restore psql \ clusterdb createdb createuser dropdb dropuser pg_isready reindexdb vacuumdb; do rm "${pkgdir}"/opt/${pkgbase}/share/man/man1/${util}.1 done install -Dm 644 COPYRIGHT -t "${pkgdir}/opt/${pkgbase}/share/licenses/${pkgname}" popd install -Dm 755 postgresql-check-db-dir -t "${pkgdir}/opt/${pkgbase}/bin" #install -Dm 644 postgresql.pam "${pkgdir}/etc/pam.d/${pkgname}" install -Dm 644 postgresql.service "${pkgdir}/usr/lib/systemd/system/${pkgname}.service" install -Dm 644 postgresql.sysusers "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf" install -Dm 644 postgresql.tmpfiles "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf" # clean up unneeded installed items rm -rf "${pkgdir}/opt/${pkgbase}/include/internal" rm -rf "${pkgdir}/opt/${pkgbase}/include/informix" rm -rf "${pkgdir}/opt/${pkgbase}/include/libpq" find "${pkgdir}//opt/${pkgbase}/include" -maxdepth 1 -type f -execdir rm {} + rmdir "${pkgdir}/opt/${pkgbase}/share/doc/html" } # vim: ts=2 sw=2 et: