# Maintainer: Hoàng Văn Khải # This file is automatically generated. Do not edit. pkgname=parallel-disk-usage-bin pkgver=0.9.0 source=(pdu-492798b6af8ff80b9c613e1a393bc257dabfb59f::https://github.com/KSXGitHub/parallel-disk-usage/releases/download/0.9.0/pdu-x86_64-unknown-linux-gnu completion.0.9.0.bash::https://github.com/KSXGitHub/parallel-disk-usage/releases/download/0.9.0/completion.bash completion.0.9.0.fish::https://github.com/KSXGitHub/parallel-disk-usage/releases/download/0.9.0/completion.fish completion.0.9.0.zsh::https://github.com/KSXGitHub/parallel-disk-usage/releases/download/0.9.0/completion.zsh https://raw.githubusercontent.com/KSXGitHub/parallel-disk-usage/0.9.0/README.md https://raw.githubusercontent.com/KSXGitHub/parallel-disk-usage/0.9.0/LICENSE) _checksum=492798b6af8ff80b9c613e1a393bc257dabfb59f _completion_checksums=(SKIP SKIP SKIP) # This PKGBUILD is not a full PKGBUILD # pkgname, pkgver, source, and sha1sums are to be generated pkgdesc='Summarize disk usage of the set of files, recursively for directories.' pkgrel=1 arch=(x86_64) license=(Apache-2.0) url='https://github.com/KSXGitHub/parallel-disk-usage' provides=(parallel-disk-usage) conflicts=(parallel-disk-usage) sha1sums=( "$_checksum" # for the pdu binary "${_completion_checksums[@]}" # for the completion files SKIP # for the readme file SKIP # for the license file ) package() { install -Dm755 "pdu-$_checksum" "$pkgdir/usr/bin/pdu" install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md" install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" install -Dm644 "completion.$pkgver.bash" "$pkgdir/usr/share/bash-completion/completions/pdu" install -Dm644 "completion.$pkgver.fish" "$pkgdir/usr/share/fish/completions/pdu.fish" install -Dm644 "completion.$pkgver.zsh" "$pkgdir/usr/share/zsh/site-functions/_pdu" }