#!/bin/sh

NAME="unixodbc"
DESC="ODBC is an open specification to access Data Sources"

MAKEDEPS=" readline"

PKG_VER=2.3.9
SOURCE="http://www.unixodbc.org/unixODBC-$PKG_VER.tar.gz"

build() {
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--disable-nls \
		--enable-gui=no \
		--enable-static
	make
}

package() {
	make -j1 DESTDIR="$PKG_DEST" install
}