wok rev 24551

updated fish and fish-doc (3.0.2 -> 3.3.1)
author Hans-G?nter Theisgen
date Fri Feb 25 09:50:31 2022 +0100 (2022-02-25)
parents af8e063c8097
children b15d3d872ae2
files fish-doc/receipt fish-lang/receipt fish/description.txt fish/receipt
line diff
     1.1 --- a/fish-doc/receipt	Fri Feb 25 09:28:16 2022 +0100
     1.2 +++ b/fish-doc/receipt	Fri Feb 25 09:50:31 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="fish-doc"
     1.7 -VERSION="3.0.2"
     1.8 +VERSION="3.3.1"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="The FrIendly SHell - documentation."
    1.11  MAINTAINER="tcg.thegamer@gmail.com"
    1.12 @@ -12,8 +12,6 @@
    1.13  
    1.14  genpkg_rules()
    1.15  {
    1.16 -	mkdir -p $fs/usr/share
    1.17 -
    1.18 -	cp -a $install/usr/share/doc	$fs/usr/share
    1.19 -	cp -a $install/usr/share/man	$fs/usr/share
    1.20 +	cook_copy_folders	doc
    1.21 +	cook_copy_folders	man
    1.22  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/fish-lang/receipt	Fri Feb 25 09:50:31 2022 +0100
     2.3 @@ -0,0 +1,16 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="fish-lang"
     2.7 +VERSION="3.3.1"
     2.8 +CATEGORY="system-tools"
     2.9 +SHORT_DESC="The FrIendly SHell - localised messages."
    2.10 +MAINTAINER="maintainer@slitaz.org"
    2.11 +LICENSE="GPL2"
    2.12 +WEB_SITE="https://fishshell.com"
    2.13 +
    2.14 +WANTED="fish"
    2.15 +
    2.16 +genpkg_rules()
    2.17 +{
    2.18 +	cook_copy_folders	locale
    2.19 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/fish/description.txt	Fri Feb 25 09:50:31 2022 +0100
     3.3 @@ -0,0 +1,17 @@
     3.4 +Fish, the Friendly Interactive SHell.
     3.5 +
     3.6 +A shell is a program that helps you operate your computer by starting
     3.7 +other programs. Fish offers a command-line interface focused on
     3.8 +usability and interactive use.
     3.9 +
    3.10 +Unlike other shells, fish does not follow the POSIX standard, but
    3.11 +still uses roughly the same model.
    3.12 +
    3.13 +Some of the special features of fish are:
    3.14 +
    3.15 +* Extensive UI: Syntax highlighting, Autosuggestions, tab completion
    3.16 +  and selection lists that can be navigated and filtered.
    3.17 +* No configuration needed: fish is designed to be ready to use
    3.18 +  immediately, without requiring extensive configuration.
    3.19 +* Easy scripting: New functions can be added on the fly. The syntax
    3.20 +  is easy to learn and use.
     4.1 --- a/fish/receipt	Fri Feb 25 09:28:16 2022 +0100
     4.2 +++ b/fish/receipt	Fri Feb 25 09:50:31 2022 +0100
     4.3 @@ -1,18 +1,18 @@
     4.4  # SliTaz package receipt.
     4.5  
     4.6  PACKAGE="fish"
     4.7 -VERSION="3.0.2"
     4.8 +VERSION="3.3.1"
     4.9  CATEGORY="system-tools"
    4.10  SHORT_DESC="The FrIendly SHell."
    4.11  MAINTAINER="tcg.thegamer@gmail.com"
    4.12  LICENSE="GPL2"
    4.13  WEB_SITE="https://fishshell.com"
    4.14  
    4.15 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.16 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    4.17  WGET_URL="https://github.com/fish-shell/fish-shell/releases/download/$VERSION/$TARBALL"
    4.18  
    4.19  DEPENDS="gcc83-lib-base ncurses"
    4.20 -BUILD_DEPENDS="gcc83 ncurses-dev ncursesw-extra"
    4.21 +BUILD_DEPENDS="cmake gcc83 ncurses-dev ncursesw-extra"
    4.22  
    4.23  current_version()
    4.24  {
    4.25 @@ -22,14 +22,13 @@
    4.26  
    4.27  compile_rules()
    4.28  {
    4.29 -	export LDFLAGS="$LDFLAGS -ltinfo"
    4.30 -
    4.31 -	./configure		\
    4.32 -		CC=gcc-83	\
    4.33 -		CXX=g++-83	\
    4.34 -		$CONFIGURE_ARGS &&
    4.35 -	make &&
    4.36 -	make DESTDIR=$DESTDIR install
    4.37 +	export	CC=gcc-83
    4.38 +	export	CXX=g++-83
    4.39 +	mkdir	_build
    4.40 +	cd	_build
    4.41 +	cmake	..				\
    4.42 +		-D CMAKE_INSTALL_PREFIX=/usr &&
    4.43 +	make install DESTDIR=$DESTDIR
    4.44  }
    4.45  
    4.46  genpkg_rules()
    4.47 @@ -39,5 +38,6 @@
    4.48  	cp -a $install/usr/bin		$fs/usr
    4.49  	cp -a $install/usr/etc		$fs
    4.50  	cp -a $install/usr/share/fish	$fs/usr/share
    4.51 -	cp -a $install/usr/share/locale	$fs/usr/share
    4.52 +	# moved to package fish-lang:
    4.53 +#	cp -a $install/usr/share/locale	$fs/usr/share
    4.54  }