Date: Friday, April 23, 2010 @ 14:51:55 Author: andyrtr Revision: 78429
upgpkg: unixodbc 2.3.0-1 new version 2.3.0 Modified: unixodbc/trunk/PKGBUILD ----------+ PKGBUILD | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2010-04-23 17:43:47 UTC (rev 78428) +++ PKGBUILD 2010-04-23 18:51:55 UTC (rev 78429) @@ -1,25 +1,29 @@ # $Id$ -# Maintainer: Judd Vinet <[email protected]> +# Maintainer: AndyRTR <[email protected]> + +# Contributor: Judd Vinet <[email protected]> # Contributor: Tom Newsom <[email protected]> pkgname=unixodbc -pkgver=2.2.14 -pkgrel=2 +pkgver=2.3.0 +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') +license=('GPL2' 'LGPL2.1') url="http://www.unixodbc.org/" backup=('etc/odbc.ini' 'etc/odbcinst.ini') -depends=('readline>=6.0') +depends=('readline>=6.0' 'libtool') options=('!libtool') source=(http://www.unixodbc.org/unixODBC-$pkgver.tar.gz) +md5sums=('f2ad22cbdffe836c58987ed2332c2e99') build() { - cd $startdir/src/unixODBC-$pkgver - ./configure --prefix=/usr --sysconfdir=/etc --enable-gui=no + cd ${srcdir}/unixODBC-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc make || return 1 - make DESTDIR=$startdir/pkg install } - -md5sums=('f47c2efb28618ecf5f33319140a7acd0') +package() { + cd ${srcdir}/unixODBC-${pkgver} + make DESTDIR=${pkgdir} install || return 1 +}
