Initial commit

This commit is contained in:
shark 2019-04-13 17:25:54 -05:00
commit e85edd4e27

22
PKGBUILD Normal file
View File

@ -0,0 +1,22 @@
# Maintainer: Cole Deck <cd109876@gmail.com>
pkgname=ppcp-git
pkgver=0.1.0
pkgrel=1
pkgdesc="cp with progress bar, written in Rust"
arch=('x86_64' 'i686' 'aarch64' 'armv7h')
url="https://github.com/acidnik/ppcp"
license=('MIT')
depends=()
source=("git+https://github.com/acidnik/ppcp.git")
makedepends=('rust')
sha1sums=('SKIP')
build() {
cd "${srcdir}/ppcp"
cargo build --release
}
package() {
cd "${srcdir}/ppcp"
install -Dm755 "./target/release/ppcp" "$pkgdir/usr/bin/ppcp"
}