diff options
Diffstat (limited to 'arch/tde-deps/yaz/PKGBUILD')
-rw-r--r-- | arch/tde-deps/yaz/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/tde-deps/yaz/PKGBUILD b/arch/tde-deps/yaz/PKGBUILD new file mode 100644 index 000000000..ff7b13d86 --- /dev/null +++ b/arch/tde-deps/yaz/PKGBUILD @@ -0,0 +1,35 @@ +# Maintainer: Jaroslav Lichtblau <[email protected]> +# Contributor: Ray Rashif <[email protected]> +# Contributor: Andrea Scarpino <[email protected]> +# Contributor: Stefan Husmann <[email protected]> +# Contributor: William Rea <[email protected]> +# Contributor: Robert Emil Berge <[email protected]> + +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 +} |