blob: 3c7ad66d20b0f4e56d1f0a007c9cbbd9c8859b60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: some additional completions for bash
# URL: https://git.eckner.net/Erich/bash-completion-extras
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: bash-completion
name=bash-completion-extras
version=0.0
release=1
source=("https://git.eckner.net/Erich/${name}/snapshot/${name}-${version}.tar.xz")
build() {
cd ${name}-${version}
make
make DESTDIR=$PKG install
}
|