rhai-tools-aur/PKGBUILD

21 lines
784 B
Bash
Raw Normal View History

2022-05-14 10:17:33 +00:00
# Maintainer: Tim Paik <timpaik@163.com>
pkgname=rhai-tools
_pkgname=rhai
pkgver=1.7.0
pkgrel=1
pkgdesc="Tools for the Rhai language, including rhai-repl, rhai-run, and rhai-dbg"
arch=('x86_64')
url="https://rhai.rs/"
license=('APACHE' 'MIT')
makedepends=(cargo)
source=("$_pkgname-$pkgver.tar.gz::https://github.com/rhaiscript/$_pkgname/archive/v$pkgver.tar.gz")
sha256sums=('4d696df126c4317a8f9d80f9b27bb690b37385ce74fdf0cd873f701f4c471b55')
package() {
cd "$_pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
cargo install --no-track --bins --features bin-features --root "$pkgdir/usr/" --path .
install -Dm644 LICENSE-APACHE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE.txt"
install -Dm644 LICENSE-MIT.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT.txt"
}