33 lines
887 B
Text
33 lines
887 B
Text
|
# Maintainer: AndyRTR <andyrtr@archlinux.org>
|
||
|
# Contributor: Judd Vinet <jvinet@zeroflux.org>
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||
|
|
||
|
pkgname=unixodbc
|
||
|
pkgver=2.3.9
|
||
|
pkgrel=1
|
||
|
pkgdesc="ODBC is an open specification for providing application developers with a predictable API with which to access Data Sources"
|
||
|
arch=('x86_64')
|
||
|
license=('GPL2' 'LGPL2.1')
|
||
|
url="http://www.unixodbc.org/"
|
||
|
backup=('etc/odbc.ini' 'etc/odbcinst.ini')
|
||
|
depends=('readline' 'libltdl')
|
||
|
source=(ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-$pkgver.tar.gz)
|
||
|
sha256sums=('52833eac3d681c8b0c9a5a65f2ebd745b3a964f208fc748f977e44015a31b207')
|
||
|
|
||
|
build() {
|
||
|
cd unixODBC-${pkgver}
|
||
|
./configure --prefix=/usr --sysconfdir=/etc
|
||
|
make
|
||
|
}
|
||
|
|
||
|
check() {
|
||
|
cd unixODBC-${pkgver}
|
||
|
make -k check
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd unixODBC-${pkgver}
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
touch "$pkgdir"/etc/{odbc,odbcinst}.ini
|
||
|
}
|