Package Details: naru 0.4.0-1

Git Clone URL: https://aur.archlinux.org/naru.git (read-only, click to copy)
Package Base: naru
Description: A configurable fuzzy selector with support for multiple selections
Upstream URL: https://github.com/ohjames/naru
Licenses: MIT
Submitter: jpike
Maintainer: jpike
Last Packager: jpike
Votes: 0
Popularity: 0.000000
First Submitted: 2019-11-14 13:50 (UTC)
Last Updated: 2019-12-04 12:17 (UTC)

Dependencies (2)

Required by (0)

Sources (0)

Latest Comments

yochananmarqos commented on 2019-12-18 01:12 (UTC)

Please adhere to Rust package guidelines:

build() {
    cd "$pkgname-$pkgver"
    cargo build --release --locked
}

check() {
    cd "$pkgname-$pkgver"
    cargo test --release --locked
}

package() {
    cd "$pkgname-$pkgver"
    install -Dm755 "target/release/$pkgname" -t "$pkgver/usr/bin"
    install -Dm644 license.txt -t "pkgver/user/share/licenses/$pkgname"
}

There's no need to use cargo install as there's no other files besides the binary.