mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:37:13 +08:00
31 lines
747 B
Bash
31 lines
747 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=yaz
|
|
pkgver=4.2.49
|
|
pkgrel=1
|
|
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=('dcb852bd4711a9d8b952a30fbf1e0b46')
|
|
|
|
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"
|
|
}
|