blob: f11599baab660559b250120373ecca2c8acd8c2b (
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
33
34
35
36
37
38
|
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=bash-git-prompt
pkgver=1.3.1
pkgrel=1
pkgdesc="nice, git-aware prompt for bash"
arch=('any')
url="https://git.eckner.net/Erich/${pkgname}"
license=('GPL')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=(
'etc/bash-git-prompt.conf'
)
options=()
source=(
"https://git.eckner.net/Erich/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"
)
sha512sums=('355953b5d42a91fe7dc3f8abc0885c83263b64733e6d214d38ae57a6132d8dd961394f72d16da39dc8815c52ef46dd12500990455fbd799f2101520e48d187db')
build() {
cd ${pkgname}-${pkgver}
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
|