aboutsummaryrefslogtreecommitdiffstats
path: root/testing/libneo4j-client/APKBUILD
blob: ad42fd6a577b67458f366e01072f5ada259fdcd8 (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
70
71
# Contributor: Chris Leishman <chris@leishman.org>
# Maintainer: Chris Leishman <chris@leishman.org>
pkgname=libneo4j-client
pkgver=2.2.0
pkgrel=1
pkgdesc="Client library for the Neo4j graph database"
url="https://github.com/cleishm/libneo4j-client"
arch="x86_64 aarch64 ppc64le"
license="Apache-2.0"
depends="openssl"
depends_dev="libressl-dev"
makedepends="$depends_dev automake autoconf libtool check-dev doxygen pkgconfig fts fts-dev libedit-dev libcypher-parser-dev"
install=""
subpackages="$pkgname-dev $pkgname-doc::noarch neo4j-client:client neo4j-client-doc::noarch"
source="https://github.com/cleishm/libneo4j-client/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 LIBS="-lfts" check
}

package() {
    cd "$builddir"
    make DESTDIR="$pkgdir" install
    mkdir -p "$pkgdir"/usr/share/doc/libneo4j-client
    mv doc/html/* "$pkgdir"/usr/share/doc/libneo4j-client/
}

doc() {
    depends="$depends_doc"
    pkgdesc="$pkgdesc (documentation)"
    install_if="docs $pkgname=$pkgver-r$pkgrel"

    if [ "$subpkgname" = "libneo4j-client-doc" ]; then
        mkdir -p "$subpkgdir"/usr/share
        mv "$pkgdir"/usr/share/doc "$subpkgdir"/usr/share/
    elif [ "$subpkgname" = "neo4j-client-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
}

client() {
    depends="libedit libcypher-parser"
    pkgdesc="Command line shell for Neo4j"

    mkdir -p "$subpkgdir"/usr
    mv "$pkgdir"/usr/bin "$subpkgdir"/usr/

    # remove if empty, ignore error (not empty)
    rmdir "$pkgdir"/usr/bin "$pkgdir"/usr 2>/dev/null || true
    return 0
}

sha512sums="973f8e49ee780b9ef8710dad057f264db1004523059ece5504af32c2ba5367e9199898d24aa133c017c953b0b750b2a23495765069c9a5ad470e8387a0eb4d9a  libneo4j-client-2.2.0.tar.gz"