diff --git a/srcpkgs/fish-shell/INSTALL b/srcpkgs/fish-shell/INSTALL new file mode 100644 index 0000000000..9ed2b5a7fd --- /dev/null +++ b/srcpkgs/fish-shell/INSTALL @@ -0,0 +1,11 @@ +case "$ACTION" in + post) + if [ "$UPDATE" = "no" ]; then + echo "--> To run fish, type 'fish' in your terminal." + echo "--> To set your colors, run 'fish_config'" + echo "--> To scan your man pages for completions, run 'fish_update_completions'" + echo "--> To autocomplete command suggestions press Ctrl + F or right arrow key." + echo "--> To use fish as your login shell, run 'chsh -s /usr/bin/fish" + fi + ;; +esac \ No newline at end of file diff --git a/srcpkgs/fish-shell/template b/srcpkgs/fish-shell/template index 5b03043439..a3b3aac767 100644 --- a/srcpkgs/fish-shell/template +++ b/srcpkgs/fish-shell/template @@ -2,17 +2,18 @@ pkgname=fish-shell version=2.0.0 revision=1 -short_desc="User friendly shell intended mostly for interactive use" -maintainer="Steven R " -license="GPL" -homepage="http://fishshell.com/" distfiles="http://fishshell.com/files/${version}/fish-${version}.tar.gz" checksum="7e4c4a0b3c518769a3d31b235e743de7a8d52f851ad19d2df9d53534e6238303" -long_desc="User friendly shell intended mostly for interactive use, forked by ridiculousfish." -hostmakedepends="autoconf make ncurses-devel" build_style=gnu-configure -makedepends="doxygen" +hostmakedepends="autoconf make" +makedepends="doxygen ncurses-devel" wrksrc="fish" +maintainer="Steven R " +homepage="http://fishshell.com/" +license="GPL" +short_desc="User friendly shell intended mostly for interactive use" +long_desc=" +User friendly shell intended mostly for interactive use, forked by ridiculousfish." pre_configure() { autoconf @@ -20,9 +21,9 @@ pre_configure() { } fish-shell_package() { - register_shell="/usr/bin/fish" noarch="yes" + register_shell="/usr/bin/fish" pkg_install() { vmove all } -} +} \ No newline at end of file