Initial commit
commit
e85edd4e27
@ -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"
|
||||
}
|
Loading…
Reference in New Issue