wok rev 17299
Add fish
Add fish-doc
This adds support and documentation for the latest fish release.
Add fish-doc
This adds support and documentation for the latest fish release.
author | necrophcodr <tcg.thegamer@gmail.com> |
---|---|
date | Thu Oct 30 22:39:29 2014 +0100 (2014-10-30) |
parents | 458227f754da |
children | 49b5c130d94f |
files | fish-doc/receipt fish/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/fish-doc/receipt Thu Oct 30 22:39:29 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="fish-doc" 1.7 +VERSION="2.1.1" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="The FrIendly SHell - docs" 1.10 +MAINTAINER="tcg.thegamer@gmail.com" 1.11 +LICENSE="GPL2" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://fishshell.com" 1.14 +#WGET_URL="$WEB_SITE/files/$VERSION/$TARBALL" 1.15 +WANTED="fish" 1.16 + 1.17 +genpkg_rules() 1.18 +{ 1.19 + mkdir -p $fs/usr 1.20 + cp -a $install/usr/share $fs/usr 1.21 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/fish/receipt Thu Oct 30 22:39:29 2014 +0100 2.3 @@ -0,0 +1,26 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="fish" 2.7 +VERSION="2.1.1" 2.8 +CATEGORY="system-tools" 2.9 +SHORT_DESC="The FrIendly SHell" 2.10 +MAINTAINER="tcg.thegamer@gmail.com" 2.11 +LICENSE="GPL2" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 +WEB_SITE="http://fishshell.com" 2.14 +WGET_URL="$WEB_SITE/files/$VERSION/$TARBALL" 2.15 + 2.16 +compile_rules() 2.17 +{ 2.18 + ./configure \ 2.19 + $CONFIGURE_ARGS && 2.20 + make && 2.21 + make DESTDIR=$DESTDIR install 2.22 +} 2.23 + 2.24 +genpkg_rules() 2.25 +{ 2.26 + mkdir -p $fs/usr 2.27 + cp -a $install/usr/bin $fs/usr 2.28 + cp -a $install/usr/etc $fs 2.29 +}