mirror of https://github.com/rm-dr/daisy
32 lines
625 B
Bash
32 lines
625 B
Bash
pkgname=daisycalc
|
|
pkgver=0.2.5
|
|
pkgrel=1
|
|
makedepends=('rust' 'cargo')
|
|
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
|
|
|
|
#source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
|
|
|
|
build() {
|
|
return 0
|
|
}
|
|
|
|
prepare() {
|
|
export RUSTUP_TOOLCHAIN=stable
|
|
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
|
|
}
|
|
|
|
build() {
|
|
export RUSTUP_TOOLCHAIN=stable
|
|
export CARGO_TARGET_DIR=target
|
|
cargo build --frozen --release --all-features
|
|
}
|
|
|
|
check() {
|
|
export RUSTUP_TOOLCHAIN=stable
|
|
cargo test --frozen --all-features
|
|
}
|
|
|
|
package() {
|
|
install -Dm0755 -t "$pkgdir/usr/bin/" "target/release/$pkgname"
|
|
}
|