aboutsummaryrefslogtreecommitdiffstats
path: root/testing/libcypher-parser/APKBUILD
blob: d2b02dd18e5fa171ba008e462f1d6e0e036340f8 (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
# Contributor: Chris Leishman <chris@leishman.org>
# Maintainer: Chris Leishman <chris@leishman.org>
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"