blob: 92c79105e07d5dcb331da1e6917cff4479b0a4a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Implémentation libre permettant une application pour accéder aux données via odbc
# URL: http://www.unixodbc.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=unixodbc
version=2.3.1
release=1
source=(http://www.unixodbc.org/unixODBC-$version.tar.gz)
build() {
cd unixODBC-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-gui=no
make
make DESTDIR=$PKG install
}
|