2017-03-30 15:06:40 +02:00
|
|
|
|
# Description: Linux için bağımsız açık veri tabanı bağlantısı
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: http://www.iodbc.org
|
2017-03-30 15:06:40 +02:00
|
|
|
|
# Packager: milisarge
|
|
|
|
|
# Depends on:
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
|
|
|
|
name=libiodbc
|
|
|
|
|
version=3.52.10
|
|
|
|
|
release=1
|
|
|
|
|
|
|
|
|
|
source=(http://downloads.sourceforge.net/sourceforge/iodbc/$name-$version.tar.gz)
|
|
|
|
|
build() {
|
|
|
|
|
cd $name-$version
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
|
--disable-static \
|
|
|
|
|
--includedir=/usr/include/libiodbc \
|
|
|
|
|
--disable-gui \
|
|
|
|
|
--disable-libodbc
|
|
|
|
|
make
|
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
rm -rf $PKG/usr/share/libiodbc/
|
|
|
|
|
}
|