From 176cc23ea4ea7addfcc53e9b845484ba4c943957 Mon Sep 17 00:00:00 2001 From: Awal Garg Date: Sun, 28 Aug 2016 18:06:40 +0530 Subject: [PATCH] fish-shell: add dependency "bc" Without bc, typing `sudo x` and hitting tab to autocomplete with throw an error from the completion file stating "command bc not found". --- srcpkgs/fish-shell/template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/fish-shell/template b/srcpkgs/fish-shell/template index 67d7fc4ffb..72ec7a8a30 100644 --- a/srcpkgs/fish-shell/template +++ b/srcpkgs/fish-shell/template @@ -1,10 +1,11 @@ # Template file for 'fish-shell' pkgname=fish-shell version=2.3.1 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="automake libtool" makedepends="ncurses-devel" +depends="bc" register_shell="/usr/bin/fish" conf_files="/etc/fish/config.fish" wrksrc="fish-${version}"