wok-next view fish/receipt @ rev 21629

updated etherape (0.9.14 -> 0.9.19)
author Hans-G?nter Theisgen
date Thu Jun 25 17:38:33 2020 +0100 (2020-06-25)
parents 9278a60d6895
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="fish"
4 VERSION="2.5.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="The Friendly Interactive SHell"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://fishshell.com/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/fish-shell/fish-shell/releases/download/$VERSION/$TARBALL"
14 BUILD_DEPENDS="ncurses-dev"
15 SPLIT="$PACKAGE-doc"
17 compile_rules() {
18 ./configure $CONFIGURE_ARGS &&
19 make &&
20 make install
21 }
23 genpkg_rules() {
24 case $PACKAGE in
25 fish)
26 copy @std
27 DEPENDS="ncurses"
28 ;;
29 fish-doc)
30 copy doc/
31 CAT="doc|documentation"
32 ;;
33 esac
34 }