blob: 114caf70799d07d88624bc2fc577e417f7fa3025 (
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
|
# Maintainer: David Parrish <daveparrish@tutanota.com>
pkgname=habitat
pkgver=0.22.1
pkgrel=1
pkgdesc="Application automation framework that allows you to build applications that have automation built-in"
arch=('x86_64')
url="https://www.habitat.sh/"
license=('Apache')
depends=('libarchive' 'libsodium')
makedepends=('cargo')
source=("${pkgname}::git+https://github.com/habitat-sh/habitat.git#tag=${pkgver}")
sha256sums=('SKIP')
build() {
# Use a temporary local Cargo repository.
export CARGO_HOME="${srcdir}/cargo-repository"
cd "${srcdir}/${pkgname}"
make
}
# Commented out because tests ask for sudo access
#check() {
# # Use a temporary local Cargo repository.
# export CARGO_HOME="$srcdir/cargo-repository"
#
# cd "${srcdir}/${pkgname}"
# make test
#}
package() {
install -D -m755 "${srcdir}/${pkgname}/target/debug/hab" "${pkgdir}/usr/bin/hab"
}
|