summaryrefslogtreecommitdiff
path: root/bash-git-prompt/PKGBUILD
blob: b08014414761eb04186885dc405f2edbfa5add8e (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.2.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=('6e4e446f3d485c35082e2eef0160ded0951839ae43596a0313d06811b61dd72a501dc4f9bcbb3b229035254ac342c1ae423fd58279dc877c04a56d10594c08db')

build() {

    cd ${pkgname}-${pkgver}
    make

}

package() {

    cd ${pkgname}-${pkgver}
    make DESTDIR="${pkgdir}" install

}