summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cfb119ecdbd560ed3df09e447cadf7f92c721d4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Maintainer: Hoàng Văn Khải <hvksmr1996@gmail.com>

# This file is automatically generated. Do not edit.

pkgname=pretty-exec
pkgver=0.5.0
source=(pretty-exec-0.5.0.tar.gz::https://github.com/KSXGitHub/pretty-exec/archive/0.5.0.tar.gz)
sha1sums=(SKIP)
# This PKGBUILD is not a full PKGBUILD
# pkgname, pkgver, source, and sha1sums are to be generated
pkgdesc='Print command and execute it'
pkgrel=1
arch=(x86_64)
license=(MIT)
url='https://github.com/KSXGitHub/pretty-exec'
makedepends=(cargo)

build() {
  cd "$srcdir/pretty-exec-$pkgver"
  cargo build --release --locked
}

package() {
  cd "$srcdir/pretty-exec-$pkgver"
  install -Dm755 target/release/pretty-exec "$pkgdir/usr/bin/pretty-exec"
  install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
  install -Dm644 exports/completion.bash "$pkgdir/usr/share/bash-completion/completions/pretty-exec"
  install -Dm644 exports/completion.fish "$pkgdir/usr/share/fish/completions/pretty-exec.fish"
  install -Dm644 exports/completion.zsh "$pkgdir/usr/share/zsh/site-functions/_pretty-exec"
}