Date: Wednesday, October 23, 2013 @ 16:39:49 Author: andyrtr Revision: 197177
upgpkg: unixodbc 2.3.2-1 upstream update 2.3.2 Modified: unixodbc/trunk/PKGBUILD ----------+ PKGBUILD | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2013-10-23 13:52:04 UTC (rev 197176) +++ PKGBUILD 2013-10-23 14:39:49 UTC (rev 197177) @@ -4,7 +4,7 @@ # Contributor: Tom Newsom <[email protected]> pkgname=unixodbc -pkgver=2.3.1 +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') @@ -12,17 +12,21 @@ url="http://www.unixodbc.org/" backup=('etc/odbc.ini' 'etc/odbcinst.ini') depends=('readline' 'libltdl') -options=('!libtool') source=("http://www.unixodbc.org/unixODBC-$pkgver.tar.gz") -md5sums=('86788d4006620fa1f171c13d07fdcaab') +md5sums=('5e4528851eda5d3d4aed249b669bd05b') build() { - cd ${srcdir}/unixODBC-${pkgver} + cd unixODBC-${pkgver} ./configure --prefix=/usr --sysconfdir=/etc make } +check() { + cd unixODBC-${pkgver} + make -k check +} + package() { - cd ${srcdir}/unixODBC-${pkgver} + cd unixODBC-${pkgver} make DESTDIR=${pkgdir} install }
