blob: 497c7f80b77bea9be23923b61de473198482a576 (
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
|
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: PragmaTwice <twice.mliu@gmail.com>
pkgname=kvrocks
pkgver=2.4.0
pkgrel=1
epoch=
pkgdesc="A distributed key value NoSQL database that uses RocksDB as storage engine and compatible with Redis protocol"
arch=(any)
url="https://kvrocks.apache.org/"
license=('Apache')
groups=()
depends=(libunwind)
makedepends=(python git gcc make cmake autoconf automake libtool)
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("$pkgname-$pkgver.tar.gz::https://github.com/apache/incubator-kvrocks/archive/refs/tags/v$pkgver.tar.gz")
noextract=()
sha256sums=('8f5673850da2d07c1b0aaa52c900f1e19626dc9efb8f3895ea825a124a5663c3')
validpgpkeys=()
prepare() {
mv incubator-$pkgname-$pkgver $pkgname-$pkgver || true
cd $pkgname-$pkgver
}
build() {
cd $pkgname-$pkgver
./x.py build -j$(nproc)
}
check() {
cd $pkgname-$pkgver
}
package() {
cd $pkgname-$pkgver/build
mkdir -p $pkgdir/usr/bin
cp kvrocks $pkgdir/usr/bin
cp kvrocks2redis $pkgdir/usr/bin
mkdir -p $pkgdir/usr/share/kvrocks
cp ../kvrocks.conf $pkgdir/usr/share/kvrocks
}
|