mirror of
https://github.com/ricoriedel/wipe.git
synced 2024-11-01 05:36:42 +00:00
28 lines
608 B
Bash
28 lines
608 B
Bash
pkgname='terminal-wipe-git'
|
|
pkgver='1.0.0'
|
|
pkgrel='2'
|
|
pkgdesc='Wipe your terminal with a random animation.'
|
|
arch=('x86_64')
|
|
url='https://github.com/ricoriedel/wipe'
|
|
license=('MIT')
|
|
makedepends=('rust')
|
|
conflicts=('wipe')
|
|
source=('git+https://www.github.com/ricoriedel/wipe.git')
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
cd wipe
|
|
cargo build --release
|
|
}
|
|
|
|
check() {
|
|
cd wipe
|
|
cargo test --release
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir/usr/bin"
|
|
mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
|
|
mv 'wipe/target/release/wipe' "$pkgdir/usr/bin"
|
|
mv 'wipe/LICENSE' "$pkgdir/usr/share/licenses/$pkgname"
|
|
} |