2016-12-23 02:27:52 +01:00
|
|
|
# Description: programmable bash completion for git
|
|
|
|
# URL: https://git-scm.com
|
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
|
|
# Depends on: bash-completion git
|
|
|
|
|
|
|
|
name=git-bashcompletion
|
2018-10-10 01:20:50 +02:00
|
|
|
version=2.19.1
|
2016-12-23 02:27:52 +01:00
|
|
|
release=1
|
2017-07-25 14:44:13 +02:00
|
|
|
source=()
|
2016-12-23 02:27:52 +01:00
|
|
|
|
|
|
|
build() {
|
2017-07-25 14:44:13 +02:00
|
|
|
wget http://repo.or.cz/git.git/blob_plain/refs/tags/v${version}:/contrib/completion/git-completion.bash
|
2016-12-23 02:27:52 +01:00
|
|
|
install -D -m 644 git-completion.bash \
|
|
|
|
$PKG/usr/share/bash-completion/completions/git
|
|
|
|
}
|