blob: 9c5166e2cfe035a4fbb34ab7d77a0369fa9c6590 (
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
|
# Maintainer: Glucy2 <glucy-2@outlook.com>
# Contributor: rubin55 <me@rubin55.org>
_pkgname=neo4j-community
pkgname=${_pkgname}-bin
pkgver="2025.05.0"
pkgrel=1
pkgdesc='A fully transactional graph database implemented in Java (binary package)'
license=('GPL-3.0-only')
arch=('any')
url="https://github.com/neo4j/neo4j"
_java_version=21
depends=("java-runtime=$_java_version" "psmisc")
provides=("${_pkgname}" "${_pkgname}=${pkgver}")
conflicts=("${_pkgname}" neo4j-enterprise)
source=(
"https://dist.neo4j.org/deb/neo4j_${pkgver}_all.deb"
"neo4j.sysusers"
"neo4j.tmpfiles"
)
# https://dist.neo4j.org/deb/neo4j_${pkgver}_all.deb.sha256
sha256sums=(
'5b7064647ac23f3e8d56a368793e6309126dc56e87e1bd022922460292f461ce'
'440874201629f436b3817be05d7f8240c9bef603a11dc0a125634287c0376b5d'
'a4a12084b93c357adfc54d1c0736d710ff507418824e08e33cc1f30bdc8a67f8'
)
package() {
bsdtar -xf data.tar.xz -C "${pkgdir}"
install -Dm644 "$srcdir/neo4j.sysusers" "$pkgdir/usr/lib/sysusers.d/neo4j.conf"
install -Dm644 "$srcdir/neo4j.tmpfiles" "$pkgdir/usr/lib/tmpfiles.d/neo4j.conf"
}
|