summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2a631bf945d450a842ffb7087c74f641df143e0f (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
# Maintainer: Arthurdw <contact@arthurdw.com>
_name=ffly
_loc="firefly/server"
pkgname=${_name}
pkgver=0.0.2
pkgrel=1
pkgdesc="An \"blazingly\" fast key-value pair database without bloat written in rust"
arch=(x86_64 i686)
url="https://github.com/Arthurdw/firefly"
license=('MIT')
makedepends=('cargo')
source=("git+https://github.com/Arthurdw/firefly.git")
sha256sums=('SKIP')

prepare() {
    cd $_loc
    
    cargo fetch --target "$CARCH-unknown-linux-gnu"
}

build() {
    cd $_loc

    export RUSTUP_TOOLCHAIN=stable
    export CARGO_TARGET_DIR=target
    cargo build --frozen --release --all-features
}


package() {
    cd $_loc
    install -Dm0755 -t "$pkgdir/usr/bin/" "target/release/$pkgname"
}

check() {
    cd $_loc

    export RUSTUP_TOOLCHAIN=stable
    cargo test --frozen --all-features
}