mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-05 00:32:17 +01:00
71 lines
2.0 KiB
Plaintext
71 lines
2.0 KiB
Plaintext
# Contributor: Chris Leishman <chris@leishman.org>
|
|
# Maintainer: Chris Leishman <chris@leishman.org>
|
|
pkgname=libcypher-parser
|
|
pkgver=0.6.0
|
|
pkgrel=0
|
|
pkgdesc="Parsing library for the Cypher query language"
|
|
url="https://github.com/cleishm/libcypher-parser"
|
|
arch="all"
|
|
license="Apache-2.0"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev automake autoconf libtool check-dev doxygen pkgconfig"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc::noarch cypher-lint cypher-lint-doc::noarch"
|
|
source="https://github.com/cleishm/libcypher-parser/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir"/"$pkgname-$pkgver"
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--prefix=/usr
|
|
make
|
|
make doc
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
mkdir -p "$pkgdir"/usr/share/doc/libcypher-parser
|
|
mv doc/html/* "$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="5faabbfe09a98ad5805a533dfdf1ba3e3357d4320a274242472ef27fc3696d48a4b0bad1606ab6092aae111fc1d7f7c9c3fa875433d6c94bc1e03f2428ca889e libcypher-parser-0.6.0.tar.gz"
|