fish-shell: update template

This commit is contained in:
wertyi48 2013-07-05 18:40:10 -03:00
parent 9a2e37d280
commit c6e03ac380
2 changed files with 21 additions and 9 deletions

View file

@ -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

View file

@ -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 <strob AT styez DOT com>"
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 <strob AT styez DOT com>"
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
}
}
}