From 29125a2f62c5660dfc423de033e18aa0153ccc74 Mon Sep 17 00:00:00 2001 From: Crestwave <35413013+Crestwave@users.noreply.github.com> Date: Fri, 18 Jan 2019 08:53:20 +0000 Subject: [PATCH] fff: new recipe (#3472) --- app-misc/fff/fff-1.0.recipe | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 app-misc/fff/fff-1.0.recipe diff --git a/app-misc/fff/fff-1.0.recipe b/app-misc/fff/fff-1.0.recipe new file mode 100644 index 000000000..dc45926c7 --- /dev/null +++ b/app-misc/fff/fff-1.0.recipe @@ -0,0 +1,35 @@ +SUMMARY="A simple file manager written in bash" +DESCRIPTION="Features: +* Fast +* Minimal (only requires bash and coreutils) +* Smooth Scrolling (using vim keybindings) +* Supports LS_COLORS +* File Oprations (copy, paste, rename, cut, etc) +* Instant as you type search" +HOMEPAGE="https://github.com/dylanaraps/fff" +COPYRIGHT="2016-2018 Dylan Araps" +LICENSE="MIT" +REVISION="1" +SOURCE_URI="$HOMEPAGE/archive/$portVersion.tar.gz" +CHECKSUM_SHA256="6e5eed18b50b3e1a2497092e618665ff00b71b27b4f7653f9693ee40517d1a8a" +SOURCE_FILENAME="fff-$portVersion.tar.gz" + +ARCHITECTURES="any" + +PROVIDES=" + fff = $portVersion + cmd:fff = $portVersion + " +REQUIRES=" + haiku + bash + cmd:file + " + +INSTALL() +{ + install -d "$binDir" "$manDir"/man1 "$docDir" + install -m 755 fff "$binDir" + install -m 644 fff.1 "$manDir"/man1 + install -m 644 README.md "$docDir" +}