mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 07:47:20 +08:00
29 lines
748 B
Bash
29 lines
748 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=unixodbc
|
|
pkgver=2.3.1
|
|
pkgrel=1
|
|
pkgdesc="ODBC is an open specification for providing application developers with a predictable API with which to access Data Sources"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2' 'LGPL2.1')
|
|
url="http://www.unixodbc.org/"
|
|
backup=('etc/odbc.ini' 'etc/odbcinst.ini')
|
|
depends=('readline>=6.0' 'libltdl')
|
|
options=('!libtool')
|
|
source=(http://www.unixodbc.org/unixODBC-$pkgver.tar.gz)
|
|
md5sums=('86788d4006620fa1f171c13d07fdcaab')
|
|
|
|
build() {
|
|
cd ${srcdir}/unixODBC-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/unixODBC-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|