2019-12-12 21:29:06 +00:00
|
|
|
# Maintainer: Markus Pesch <markus.pesch@cryptic.systems>
|
|
|
|
|
|
|
|
pkgname=git-prompt
|
|
|
|
pkgver=0.1.0
|
2020-09-28 17:52:37 +00:00
|
|
|
pkgrel=4
|
2019-12-12 21:29:06 +00:00
|
|
|
pkgdesc='A git prompt for bash'
|
|
|
|
arch=('any')
|
|
|
|
#url=https://github.com/volker-raschek/flucky
|
|
|
|
#license=('Apache 2.0')
|
|
|
|
depends=('bash')
|
2020-09-28 17:52:37 +00:00
|
|
|
source=(
|
|
|
|
"local://git-prompt.sh"
|
|
|
|
"local://git-completion.sh"
|
|
|
|
)
|
|
|
|
sha256sums=(
|
|
|
|
"SKIP"
|
|
|
|
"SKIP"
|
|
|
|
)
|
2019-12-12 21:29:06 +00:00
|
|
|
|
|
|
|
package() {
|
2020-09-28 17:52:37 +00:00
|
|
|
install -D --mode=0755 --target-directory=${pkgdir}/etc/bash_completion.d ${srcdir}/git-prompt.sh ${srcdir}/git-completion.sh
|
2019-12-12 21:29:06 +00:00
|
|
|
}
|