Created
February 7, 2020 10:41
-
-
Save passy/3326eef5af177c9854e4bf759edf3c04 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Pascal Hartig <[email protected]> | |
pkgname=dust-bin | |
pkgver="0.4.41" | |
pkgrel=1 | |
pkgdesc="A more intuitive version of du in rust" | |
arch=('x86_64') | |
url="https://github.com/bootandy/dust" | |
license=('Apache') | |
depends=() | |
source=("https://github.com/bootandy/dust/releases/download/v0.4.41/dust-v${pkgver}-x86_64-unknown-linux-musl.tar.gz") | |
makedepends=() | |
options=() | |
sha256sums=('427e1229f3d0336788d43c044ef71160dd4fedf29d1ea36c0ec3f9cb5950a321') | |
build() { | |
true | |
} | |
package() { | |
mkdir -p "$pkgdir/usr/bin" | |
cp --no-preserve=ownership "$srcdir/dust-v${pkgver}-x86_64-unknown-linux-musl"/dust "$pkgdir/usr/bin/dust" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment