mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
28 lines
752 B
Bash
28 lines
752 B
Bash
|
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux-br.org>
|
||
|
# Contributor: Rick Rein <jeebusroxors@gmail.com>
|
||
|
|
||
|
pkgname=psqlodbc
|
||
|
pkgver=08.04.0100
|
||
|
pkgrel=1
|
||
|
pkgdesc="PostgreSQL ODBC driver"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://www.postgresql.org"
|
||
|
depends=('unixodbc')
|
||
|
makedepends=('postgresql')
|
||
|
options=('!libtool')
|
||
|
source=(ftp://ftp2.it.postgresql.org/mirrors/postgres//odbc/versions/src/$pkgname-$pkgver.tar.gz
|
||
|
fix-function-declarations.patch)
|
||
|
md5sums=('2328c3e97e6a376620a5d317137515ff'
|
||
|
'f1189f9c6ae0b5bfb5ee8423eaa4076f')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
|
||
|
patch -p1 -i "$srcdir/fix-function-declarations.patch" || return 1
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|