add(any/git-prompt): initial pkg

This commit is contained in:
2019-12-12 22:29:06 +01:00
parent bc86ede3db
commit 284079718a
5 changed files with 566 additions and 0 deletions

16
any/git-prompt/PKGBUILD Normal file
View File

@ -0,0 +1,16 @@
# Maintainer: Markus Pesch <markus.pesch@cryptic.systems>
pkgname=git-prompt
pkgver=0.1.0
pkgrel=3
pkgdesc='A git prompt for bash'
arch=('any')
#url=https://github.com/volker-raschek/flucky
#license=('Apache 2.0')
depends=('bash')
source=("git-prompt-sources.tar.bz2")
sha256sums=('SKIP')
package() {
install -D --mode=0755 --target-directory=${pkgdir}/etc/bash_completion.d ${srcdir}/git-prompt.sh git-completion.sh
}