environment/recipes/postgresql/debian.yml

26 lines
450 B
YAML
Raw Normal View History

2025-08-06 16:50:03 +02:00
packages:
- build-essential
- libreadline-dev
- zlib1g-dev
- flex
- bison
- libssl-dev
- libxml2-dev
- libxslt1-dev
- libpam0g-dev
- libedit-dev
repository:
2025-08-07 14:23:42 +02:00
# Original repository
# https://git.postgresql.org/gitweb/?p=postgresql.git
2025-08-06 16:50:03 +02:00
url: https://github.com/postgres/postgres.git
branch: REL_17_5
2025-08-07 13:02:01 +02:00
version: 17.5
2025-08-06 16:50:03 +02:00
steps:
- ./configure --prefix=$PREFIX
- make -j$CPUS
2025-08-07 13:02:01 +02:00
- $SUDO mkdir -p $PREFIX
- $SUDO make install