mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
698 B
Bash
23 lines
698 B
Bash
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=unixodbc
|
|
pkgver=2.2.14
|
|
pkgrel=2
|
|
pkgdesc="ODBC is an open specification for providing application developers with a predictable API with which to access Data Sources"
|
|
arch=('arm')
|
|
license=('GPL2')
|
|
url="http://www.unixodbc.org/"
|
|
backup=('etc/odbc.ini' 'etc/odbcinst.ini')
|
|
depends=('readline>=6.0')
|
|
options=('!libtool')
|
|
source=(http://www.unixodbc.org/unixODBC-$pkgver.tar.gz)
|
|
md5sums=('f47c2efb28618ecf5f33319140a7acd0')
|
|
|
|
build() {
|
|
cd $startdir/src/unixODBC-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc --enable-gui=no
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
|