Package Details: hexyl-git 0.13.0.r5.g2a53448-1

Git Clone URL: https://aur.archlinux.org/hexyl-git.git (read-only, click to copy)
Package Base: hexyl-git
Description: A command-line hex viewer
Upstream URL: https://github.com/sharkdp/hexyl
Licenses: MIT, Apache
Conflicts: hexyl
Provides: hexyl
Submitter: m3thodic
Maintainer: m3thodic
Last Packager: m3thodic
Votes: 2
Popularity: 0.000000
First Submitted: 2019-01-12 13:00 (UTC)
Last Updated: 2023-05-27 04:10 (UTC)

Dependencies (5)

Required by (1)

Sources (1)

Latest Comments

mark commented on 2021-10-07 04:54 (UTC)

@m3thodic now it doesn't work if the user doesn't have the CARGO_TARGET_DIR defined.

In the build() method it throws an error:

error: the target directory is set to an empty string in the `CARGO_TARGET_DIR` environment variable

But even after removing that from the build invocation, it fails at the package() step because it is now missing the target/ directory from this line:

install -Dm755 "${srcdir}/${pkgname}/release/hexyl" "${pkgdir}/usr/bin/hexyl"

m3thodic commented on 2019-02-10 04:07 (UTC)

@Jonhoo thanks, added to the PKGBUILD!

Jonhoo commented on 2019-01-15 13:50 (UTC)

I think the PKGBUILD assumes that build files end up in target/ in the current directory, but that's not true if the user has CARGO_TARGET_DIR set. Should be fixed by adding a CARGO_TARGET_DIR= to the env invocation before cargo build