16 lines
447 B
Plaintext
16 lines
447 B
Plaintext
# 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
|
|
version=2.19.1
|
|
release=1
|
|
source=()
|
|
|
|
build() {
|
|
wget http://repo.or.cz/git.git/blob_plain/refs/tags/v${version}:/contrib/completion/git-completion.bash
|
|
install -D -m 644 git-completion.bash \
|
|
$PKG/usr/share/bash-completion/completions/git
|
|
}
|