mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:37:14 +08:00
380c70a5cc
- fluidsynth - freetds - jack2
32 lines
866 B
Bash
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
|
|
}
|