diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/unixodbc | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/unixodbc')
-rw-r--r-- | main/unixodbc/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/main/unixodbc/APKBUILD b/main/unixodbc/APKBUILD new file mode 100644 index 000000000..cd72a1653 --- /dev/null +++ b/main/unixodbc/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Carlo Landmeter <clandmeter@gmail.com> +# Maintainer: Carlo Landmeter <clandmeter@gmail.com> +pkgname=unixodbc +pkgver=2.2.14 +pkgrel=0 +pkgdesc="ODBC is an open specification to access Data Sources" +url="http://www.unixodbc.org/" +license="GPL2" +depends="readline" +makedepends="readline-dev" +subpackages="$pkgname-dev" +source="http://www.unixodbc.org/unixODBC-${pkgver}.tar.gz" + +build() { + cd "$srcdir/unixODBC-$pkgver" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --enable-gui=no + make || return 1 + make -j1 DESTDIR="$pkgdir" install + +} + +md5sums="f47c2efb28618ecf5f33319140a7acd0 unixODBC-2.2.14.tar.gz" |