blob: 8dd1477b2a5039cff5c3d1d16f6bb27a076900dc (
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
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=('b3b3ed291e31047a0deb69adb4eecbfaa3f239562e30156d0093acdba1ee8d90b936a6a3d919ee75dd1bf9680d27785a0fb0023c34c4036c58124f067f2083df')
build() {
cd ${pkgname}-${pkgver}
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
|