mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-20 08:02:26 +01:00
72 lines
1.4 KiB
Plaintext
72 lines
1.4 KiB
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Contributor: Kiyoshi Aman <kiyoshi.aman@gmail.com>
|
|
# Maintainer: Lucas Ramage <ramage.lucas@openmailbox.org>
|
|
pkgname=bash-completion
|
|
pkgver=2.8
|
|
pkgrel=0
|
|
pkgdesc="Command-line tab-completion for bash"
|
|
url="https://github.com/scop/bash-completion"
|
|
arch="noarch"
|
|
license="GPL-2.0-or-later"
|
|
depends="bash"
|
|
depends_dev=
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
source="https://github.com/scop/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz"
|
|
builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
# Provided with util-linux and networkmanager:
|
|
_conflicting="
|
|
cal
|
|
chsh
|
|
dmesg
|
|
eject
|
|
hd
|
|
hexdump
|
|
hwclock
|
|
ionice
|
|
look
|
|
ncal
|
|
newgrp
|
|
renice
|
|
rfkill
|
|
rtcwake
|
|
su
|
|
nmcli
|
|
umount
|
|
mount
|
|
"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
|
|
mkdir -p "$pkgdir"/usr/share/doc/$pkgname/
|
|
install -m644 AUTHORS CHANGES CONTRIBUTING.md README.md \
|
|
"$pkgdir"/usr/share/doc/$pkgname/
|
|
|
|
cd "$pkgdir"/usr/share/bash-completion/completions
|
|
for c in $_conflicting; do
|
|
rm -f $c
|
|
done
|
|
}
|
|
|
|
sha512sums="d839ef5a98811a2aade7ebdc0bc84c84a41c74db384f89913b06f3c25add1ba22528ac25392b19d27280685d258c74dcdc11247cbaae5b8d82f2c0b546abc268 bash-completion-2.8.tar.xz"
|