blob: 7bc8df9baaeee9b520320566cac90d8f10ccfacb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Alexander Rundberg <alexanderrundberg [at] fastmail [dot] jp>
pkgname=pretty-git-prompt
pkgver=0.2.0
pkgrel=3
pkgdesc="Pretty git status for your shell prompt"
arch=('any')
url="https://github.com/TomasTomecek/pretty-git-prompt"
license=('MIT')
depends=('git')
makedepends=('rust' 'cmake')
source=("https://github.com/TomasTomecek/pretty-git-prompt/archive/$pkgver.tar.gz")
md5sums=('de78492d10f69c9946ecec184ea00398')
build() {
cd "$srcdir"/"$pkgname"-"$pkgver"
make exec-stable-build
}
package() {
cd "$srcdir"/"$pkgname"-"$pkgver"
install -Dm755 target/release/pretty-git-prompt "$pkgdir"/usr/bin/pretty-git-prompt
}
|