core/freetds/PKGBUILD
Chaoting Liu 380c70a5cc rebuild with readline
- fluidsynth
- freetds
- jack2
2017-02-03 07:39:02 +00:00

32 lines
866 B
Bash

# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/freetds
pkgname=freetds
pkgver=0.95.79
pkgrel=2
pkgdesc='Library for accessing Sybase and MS SQL Server databases'
url='http://www.freetds.org'
arch=('x86_64')
license=('LGPL')
depends=('unixodbc' 'openssl' 'readline')
backup=('etc/freetds/freetds.conf'
'etc/freetds/locales.conf'
'etc/freetds/pool.conf')
source=("ftp://ftp.freetds.org/pub/freetds/stable/$pkgname-$pkgver.tar.bz2")
md5sums=('bbc43cdbf1778dc354c191eda4c6ee70')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr \
--sysconfdir=/etc/freetds \
--enable-msdblib \
--with-tdsver=7.0 \
--with-unixodbc=/usr \
--with-openssl
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}