You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
# Maintainer: Jaroslav Lichtblau <svetlemodry@archlinux.org>
|
|
# Contributor: Ray Rashif <schiv@archlinux.org>
|
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
# Contributor: Robert Emil Berge <filoktetes@linuxophic.org>
|
|
|
|
pkgname=yaz
|
|
pkgver=5.32.0
|
|
pkgrel=2
|
|
pkgdesc="A toolkit supporting the development of Z39.50/SRW/SRU clients and servers"
|
|
arch=('powerpc64le')
|
|
url="https://www.indexdata.dk/yaz"
|
|
license=('BSD')
|
|
depends=('gnutls' 'libxslt' 'icu')
|
|
makedepends=('zsh')
|
|
changelog=$pkgname.changelog
|
|
source=(http://ftp.indexdata.dk/pub/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
sha256sums=('04d08c799d5ee56a2670e6ac0b42398d2ff956bd9bf144bfe9c4c30e557140e0')
|
|
|
|
build() {
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --enable-shared=yaz
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
#License
|
|
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|