You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
488 B
Bash
22 lines
488 B
Bash
# 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"
|
|
} |