Skip to content

Commit

Permalink
avml: fix install.
Browse files Browse the repository at this point in the history
  • Loading branch information
noptrix committed May 5, 2024
1 parent db09639 commit c1b0816
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/avml/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ arch=('x86_64' 'aarch64')
groups=('blackarch' 'blackarch-misc')
url='https://github.com/microsoft/avml'
license=('MIT')
makedepends=('git' 'cargo')
makedepends=('git' 'cargo' 'musl' 'rust-musl')
source=("git+https://github.com/microsoft/$pkgname.git")
options=(!strip)
sha512sums=('SKIP')
Expand All @@ -24,7 +24,9 @@ pkgver() {
build() {
cd $pkgname

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

package() {
Expand Down

0 comments on commit c1b0816

Please sign in to comment.