app-misc/pfetch: add new package

a pretty system information tool written in POSIX sh

Package-Manager: Portage-2.3.89, Repoman 2.3.20
Signed-off-by: Mathieu Tortuyaux <mathieu.tortuyaux@gmail.com>
This commit is contained in:
Mathieu Tortuyaux
2020-04-19 19:39:51 +02:00
parent baccbd0f3a
commit 6f3aef0ce6
3 changed files with 34 additions and 0 deletions

1
app-misc/pfetch/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST pfetch-0.6.0.tar.gz 17431 BLAKE2B 300f6f44f9306df4f438227a6f35bd54f50e477b950a45d63656f7c460cfc30a8b44ebdb3d5fdcf1e808e3b8e8e69e14088ff73a5da4485abf694893f2cc53f3 SHA512 868901bec6ae8999ad40fcb94bdf804969a3dfd724dc554d62f59982daf48d359094764b2e45d4816983d4f46e38de30f0bcb646ecd95bf3263ba128b87a1ddf

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>mathieu.tortuyaux@gmail.com</email>
<name>Mathieu Tortuyaux</name>
</maintainer>
<longdescription lang="en">
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 I hope it will act as a learning resource for POSIX sh and simple information detection across various different operating systems.
</longdescription>
<upstream>
<bugs-to>https://github.com/dylanaraps/pfetch/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,17 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A pretty system information tool written in POSIX sh"
HOMEPAGE="https://github.com/dylanaraps/pfetch"
KEYWORDS="~amd64 ~x86"
SRC_URI="https://github.com/dylanaraps/pfetch/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
src_install() {
dobin "${PN}"
}