blob: e993a8ef95e25f992ade1db722dfc69ab87321cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Independent Open DataBase Connectivity for Linux
# URL: http://www.iodbc.org
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
name=libiodbc
version=3.52.8
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/
}
|