summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0deee46568f3a21ca7951b6eef068e5663b823a9 (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
# Maintainer: Jarkko Sakkinen <jarkko.sakkinen@iki.fi>

pkgname="enarx-git"
_pkgname="enarx"
pkgver=0.1.3.git
pkgrel=1
pkgdesc="Application deployment system enabling applications to run within Trusted Execution Environments (TEEs)"
arch=("x86_64")
url="https://github.com/enarx/enarx"
license=("GPL3")
depends=()
makedepends=("rust-nightly-bin" "cargo" "git")
provides=("enarx")
conflicts=("enarx")
source=("$_pkgname::git+https://github.com/enarx/enarx.git")
sha256sums=("SKIP")

pkgver() {
    cd "$_pkgname"
    echo "$(grep '^version =' Cargo.toml|head -n1|cut -d\" -f2).$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)"
}

build() {
  cd $_pkgname
  cargo build --release --locked --all-features --target-dir=target
}

check() {
   cd $_pkgname
   cargo test --release --locked --target-dir=target
 }

package() {
    cd "$srcdir/$_pkgname"
    install -Dm755 target/release/$_pkgname "$pkgdir/usr/bin/$_pkgname"
    install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}