Carlo Landmeter b6af1e02ef testing/[multiple]: move unmaintained packages
This moves all packages from testing to unmaintained which have not been
updated for atleast 6 months. If you are affected by this commit please follow
this proceddure:

* make sure your packages build on all architectures
* move your pacakge(s) back to testing
* if you want to keep this package and can maintain it (or find somebody to
  maintain it for you) for a minimum of 6 months ask it to be moved to community
2016-08-25 15:26:24 +02:00

37 lines
912 B
Plaintext

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=postgresql
pkgver=9.1.5
_engine_ver=${pkgver%.*}
pkgrel=0
pkgdesc="Old PostgreSQL binary to be used with postgresql-upgrade"
url="http://www.postgresql.org/"
arch="all"
license="BSD"
install=""
depends_dev="readline-dev openssl-dev zlib-dev libxml2-dev"
makedepends="$depends_dev"
subpackages=""
source="ftp://ftp.$pkgname.org/pub/source/v$pkgver/$pkgname-$pkgver.tar.bz2
"
build() {
cd "$srcdir"/$pkgname-$pkgver || return 1
./configure --prefix=/usr/lib/postgresql-${_engine_ver} \
--mandir=/usr/share/man \
--with-openssl \
--disable-rpath \
|| return 1
make all || return 1
}
package() {
cd "$srcdir"/$pkgname-$pkgver || return 1
make DESTDIR="$pkgdir" install || return 1
# remo stuff not needed for upgrade
# cd "$pkgdir"/usr/lib/potgresql-${_engine_ver}
}
md5sums="c784decb60615aa94c6a31601bc6ffd2 postgresql-9.1.5.tar.bz2"