Skip to content

Commit

Permalink
Merge pull request #2695 from mariux64/update-postgresql-from-13.1-to…
Browse files Browse the repository at this point in the history
…-14.4

Update PostgreSQL from 13.1 to 14.4
  • Loading branch information
pmenzel authored Jun 21, 2022
2 parents 844b39c + 0f80a32 commit 2dc34f4
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions postgresql.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION postgresql-13.1-0
# BEE_VERSION postgresql-14.4-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)
Expand All @@ -9,7 +9,8 @@
## The source URL(s) define the location of the sources that will be
## downloaded. Version variables may be used to simplify reuse of this bee-file.

SRCURL[0]="https://ftp.postgresql.org/pub/source/v${PKGVERSION}/postgresql-${PKGVERSION}.tar.gz"
# SRCURL[0]="https://ftp.postgresql.org/pub/source/v${PKGVERSION}/postgresql-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/69b19b46defe6eded4b3bbc1725025f9/postgresql-14.4.tar.gz"

###############################################################################
## Add URLs/pathes to patch files to the PATCHURL array.
Expand Down Expand Up @@ -51,13 +52,15 @@ SRCURL[0]="https://ftp.postgresql.org/pub/source/v${PKGVERSION}/postgresql-${PKG
# bee_configure
#}

#mee_build() {
# bee_build
#}
mee_build() {
bee_build
bee_build -C contrib
}

#mee_install() {
# bee_install
#}
mee_install() {
bee_install
bee_install -C contrib
}
## by default this may be 'make install DESTDIR="${D}"'

###############################################################################
Expand Down

0 comments on commit 2dc34f4

Please sign in to comment.