91b7721a0d
Note that you have to dump/restore your databases if upgrading from a previous version. See the README file of the port for an example of how to do so. Also be sure to have a look at the release notes for possible incompatibilities: http://www.postgresql.org/docs/8.2/static/release-8-2.html
23 lines
574 B
Plaintext
23 lines
574 B
Plaintext
# Description: A sophisticated Object-Relational DBMS
|
|
# URL: http://www.postgresql.org
|
|
# Packager: Markus Heinz, su1690 at studserver.uni-dortmund dot de
|
|
# Maintainer: Simone Rota, sip at crux dot nu
|
|
# Depends on:
|
|
|
|
name=postgresql
|
|
version=8.2.0
|
|
release=1
|
|
source=(ftp://ftp7.de.postgresql.org/pub/ftp.postgresql.org/source/v8.2/$name-$version.tar.bz2 postgresql)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr --disable-nls
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/doc
|
|
|
|
mkdir -p $PKG/etc/rc.d/
|
|
install -D -m 755 ../postgresql $PKG/etc/rc.d/postgresql
|
|
}
|