diff options
author | Antoine Lubineau | 2023-03-28 01:00:18 +0200 |
---|---|---|
committer | Antoine Lubineau | 2023-03-28 01:00:18 +0200 |
commit | ac4b8ab27f897c97ce4b88df961c8c148c198f2d (patch) | |
tree | d71e122d7987ff57eb340ab96dd4aae92f87a9a3 /PKGBUILD | |
parent | d7af617abf1db9d36e4b2449502b0ff2497e5891 (diff) | |
download | aur-ac4b8ab27f897c97ce4b88df961c8c148c198f2d.tar.gz |
fuc: 1.1.7
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,8 +1,8 @@ # Maintainer: Antoine Lubineau <antoine@lubignon.info> pkgname=fuc -pkgver=1.1.6 -pkgrel=2 +pkgver=1.1.7 +pkgrel=1 pkgdesc="Modern, performance focused unix commands" arch=('x86_64') url="https://github.com/SUPERCILEX/fuc" @@ -10,7 +10,7 @@ license=('Apache') depends=('gcc-libs') makedepends=('cargo-nightly') source=("$pkgname-$pkgver.tar.gz::https://github.com/SUPERCILEX/fuc/archive/refs/tags/${pkgver}.tar.gz") -sha256sums=('94be9005ea08a2b1cd2d5732df47abad7e4ca68b864fb832f8bd47e42cd2f5fd') +sha256sums=('7f61937d5dfce776ef7dcb86a8a97f6db5701a7a522474b99ce2ae36ad9d6248') _commands=('cpz' 'rmz') @@ -38,6 +38,6 @@ check() { package() { cd "$pkgname-$pkgver" for _command in ${_commands[@]}; do - cargo install --locked --no-track --root "$pkgdir/usr/" --path "$_command" + install -D -m 0755 -t "${pkgdir}/usr/bin/" "target/release/${_command}" done } |