# $Id: PKGBUILD 197416 2013-10-25 18:23:06Z andyrtr $ # Maintainer: AndyRTR # Contributor: Judd Vinet # Contributor: Tom Newsom pkgname=unixodbc pkgver=2.3.2 pkgrel=1 pkgdesc="ODBC is an open specification for providing application developers with a predictable API with which to access Data Sources" arch=('i686' 'x86_64') license=('GPL2' 'LGPL2.1') url="http://www.unixodbc.org/" backup=('etc/odbc.ini' 'etc/odbcinst.ini') depends=('readline' 'libltdl') source=("http://www.unixodbc.org/unixODBC-$pkgver.tar.gz") md5sums=('5e4528851eda5d3d4aed249b669bd05b') 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 }