blob: bd11e161c0dc85661e817c2eda317b2d74de1a93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description:
# URL:
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:
name=unixodbc
version=2.2.14
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
}
|