Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

main/mtr: move bash completion to own package #10589

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 13 additions & 2 deletions main/mtr/APKBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# Maintainer:
pkgname=mtr
pkgver=0.93
pkgrel=0
pkgrel=1
pkgdesc="Full screen ncurses traceroute tool"
url="http://www.bitwizard.nl/mtr/"
arch="all"
license="GPL-2.0-only"
makedepends="ncurses-dev autoconf gtk+2.0-dev libcap-dev"
options="suid"
subpackages="$pkgname-doc $pkgname-gtk"
subpackages="$pkgname-doc $pkgname-gtk $pkgname-bash-completion:bashcomp:noarch"
source="ftp://ftp.bitwizard.nl/mtr/mtr-$pkgver.tar.gz
mtr-gtk.desktop
"
Expand Down Expand Up @@ -51,5 +51,16 @@ gtk() {
mv "$pkgdir"/usr/share/pixmaps "$subpkgdir"/usr/share/
}

bashcomp() {
depends=""
pkgdesc="Bash completion for $pkgname"
install_if="$pkgname=$pkgver-r$pkgrel bash-completion"

mkdir -p "$subpkgdir"/usr/share/bash-completion
mv "$pkgdir"/usr/share/bash-completion/completions \
"$subpkgdir"/usr/share/bash-completion
rm -rf "$pkgdir"/usr/share/bash-completion
}

sha512sums="046e98a661bd6248ce819411ceb6e2b875b92877de38523594898df507836c113573cf40d7d4cc548370f515abe99e0aa4d8b3ba44ad54dd00f8e93c8a96c021 mtr-0.93.tar.gz
ecf7543e0125fad6d3f17c30f29f1fc8a3b1e2e477802fe8464e436c3cdfa30d0630b8543cc3f022c475228e94ac8f92981df4d8fb08fe01d004be3d78d6da77 mtr-gtk.desktop"