# Contributor: Chris Leishman # Maintainer: Chris Leishman pkgname=libcypher-parser pkgver=0.6.2 pkgrel=0 pkgdesc="Parsing library for the Cypher query language" url="https://github.com/cleishm/libcypher-parser" arch="all" license="Apache-2.0" makedepends="$depends_dev automake autoconf libtool check-dev doxygen pkgconfig" subpackages="$pkgname-dev $pkgname-doc::noarch cypher-lint cypher-lint-doc::noarch" source="https://github.com/cleishm/libcypher-parser/releases/download/v$pkgver/libcypher-parser-$pkgver.tar.gz" build() { ./configure \ --prefix=/usr make } check() { make check } package() { make DESTDIR="$pkgdir" install mkdir -p "$pkgdir"/usr/share/doc/libcypher-parser } doc() { depends="$depends_doc" pkgdesc="$pkgdesc (documentation)" install_if="docs $pkgname=$pkgver-r$pkgrel" if [ "$subpkgname" = "libcypher-parser-doc" ]; then mkdir -p "$subpkgdir"/usr/share mv "$pkgdir"/usr/share/doc "$subpkgdir"/usr/share/ elif [ "$subpkgname" = "cypher-lint-doc" ]; then mkdir -p "$subpkgdir"/usr/share mv "$pkgdir"/usr/share/man "$subpkgdir"/usr/share/ find "$subpkgdir"/usr/share/man/ -type f | xargs gzip -9 else die "Unknown doc package $pkgname" fi # remove if empty, ignore error (not empty) rmdir "$pkgdir"/usr/share "$pkgdir"/usr || true 2>/dev/null return 0 } lint() { pkgdesc="Lint tool for the Cypher query language" mkdir -p "$subpkgdir"/usr mv "$pkgdir"/usr/bin "$subpkgdir"/usr/ # remove if empty, ignore error (not empty) rmdir "$pkgdir"/usr/bin "$pkgdir"/usr || true 2>/dev/null return 0 } sha512sums="71d1fd966c2d7e5637be1b59a17483cf8a782aa75582f4dcc64e0ea7b3f50c80cbf92cf07df2c601aeaa1186910a0e3b529c58da1318a34357f8c860f8e97361 libcypher-parser-0.6.2.tar.gz"