From cd32a206cfedfb0c2f3100abf6d017db58159b4d Mon Sep 17 00:00:00 2001 From: Crestwave <35413013+Crestwave@users.noreply.github.com> Date: Thu, 3 Oct 2019 10:19:36 +0800 Subject: [PATCH] pfetch: new recipe (#4206) --- app-misc/pfetch/pfetch-0.1.recipe | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 app-misc/pfetch/pfetch-0.1.recipe diff --git a/app-misc/pfetch/pfetch-0.1.recipe b/app-misc/pfetch/pfetch-0.1.recipe new file mode 100644 index 000000000..8b17b00c7 --- /dev/null +++ b/app-misc/pfetch/pfetch-0.1.recipe @@ -0,0 +1,29 @@ +SUMMARY="A pretty system information tool written in POSIX sh" +DESCRIPTION="The goal of this project is to implement a simple system \ +information tool in POSIX sh using features built into the language itself \ +(*where possible*). The source code is highly documented and the author hopes \ +it will act as a learning resource for POSIX sh and simple information \ +detection across various different operating systems." +HOMEPAGE="https://github.com/dylanaraps/pfetch" +COPYRIGHT="2016-2019 Dylan Araps" +LICENSE="MIT" +REVISION="1" +SOURCE_URI="$HOMEPAGE/archive/$portVersion/$portVersionedName.tar.gz" +CHECKSUM_SHA256="0f42383ce099c7a3956fe93c803b4882c094e869d4dd09b22806e83b176abe2d" + +ARCHITECTURES="any" + +PROVIDES=" + pfetch = $portVersion + cmd:pfetch + " +REQUIRES=" + haiku + " + +INSTALL() +{ + install -d "$binDir" "$docDir" + install -m 755 pfetch "$binDir" + install -m 644 README.md "$docDir" +}