mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:44:36 +08:00
31 lines
784 B
Bash
31 lines
784 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
# maintainer inkane@chkra-project.org
|
|
# contributor abveritas@chakra-project.org
|
|
|
|
pkgname=yaz
|
|
pkgver=4.2.63
|
|
pkgrel=2
|
|
pkgdesc="A toolkit supporting the development of Z39.50/SRW/SRU clients and servers"
|
|
arch=('x86_64')
|
|
license=('custom')
|
|
url="http://www.indexdata.dk/yaz"
|
|
depends=('openssl' 'libxslt' 'icu')
|
|
options=('!libtool')
|
|
source=("http://ftp.indexdata.dk/pub/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('9d8ec0b7b52951d70c86804679e94271')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr \
|
|
--enable-shared=yaz \
|
|
--with-openssl=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
install -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|