blob: 4be75d2db98e394eb6c10c9ec9c565ee0d498393 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Contributor: Chris Leishman <chris@leishman.org>
# Maintainer: Chris Leishman <chris@leishman.org>
pkgname=libcypher-parser
pkgver=0.5.1
pkgrel=0
pkgdesc="Parsing library for the Cypher query language"
url="https://github.com/cleishm/libcypher-parser"
arch="all"
license="ASL 2.0"
depends=""
depends_dev=""
makedepends="$depends_dev automake autoconf libtool check-dev doxygen pkgconfig"
install=""
subpackages="$pkgname-dev $pkgname-doc cypher-lint cypher-lint-doc"
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 \
|| return 1
make || return 1
make check || return 1
make doc || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
mkdir -p "$pkgdir"/usr/share/doc/libcypher-parser
mv doc/html/* "$pkgdir"/usr/share/doc/libcypher-parser/
}
doc() {
depends="$depends_doc"
pkgdesc="$pkgdesc (documentation)"
arch=${arch_doc:-"noarch"}
install_if="docs $pkgname=$pkgver-r$pkgrel"
if [ "X$subpkgname" = "Xlibcypher-parser-doc" ]; then
mkdir -p "$subpkgdir"/usr/share
mv "$pkgdir"/usr/share/doc "$subpkgdir"/usr/share/
elif [ "X$subpkgname" = "Xcypher-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 -f "$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
}
md5sums="c4c9a3bd9a97f4d97c1ffeb1ff19ebbe libcypher-parser-0.5.1.tar.gz"
sha256sums="bc9e3234e97b2e7c5829bfe17ed9e2f6a619a2e66144b6db7a6082e697441ead libcypher-parser-0.5.1.tar.gz"
sha512sums="632d65741332cc81cb42bbf61f53074677d81db27b6a8f2ce9f44fa04f82f16fd13b78c1ed34518124f7e10b77dc87fa3d4f791d19e076c6dc668b89faa82a56 libcypher-parser-0.5.1.tar.gz"
|