diff options
-rw-r--r-- | TODO.md | 2 | ||||
-rw-r--r-- | app-misc/tty-clock/Manifest | 2 | ||||
-rw-r--r-- | app-misc/tty-clock/metadata.xml | 8 | ||||
-rw-r--r-- | app-misc/tty-clock/tty-clock-2.3.ebuild | 24 |
4 files changed, 36 insertions, 0 deletions
diff --git a/TODO.md b/TODO.md index b908369..c694f78 100644 --- a/TODO.md +++ b/TODO.md @@ -31,6 +31,8 @@ * [media-video/yaxg](https://github.com/DanielFGray/yaxg) * [sys-apps/fcat](https://github.com/mre/fcat) * [sys-power/auto-cpufreq](https://github.com/AdnanHodzic/auto-cpufreq) +* [sys-process/gotop](https://github.com/xxxserxxx/gotop) +* [sys-process/ytop](https://github.com/cjbassi/ytop) * [x11-misc/admiral](https://github.com/sector-f/admiral) * [x11-misc/bevelbar](https://www.uninformativ.de/git/bevelbar) * [x11-misc/colorlovers](https://github.com/zzzeyez/colorlovers) diff --git a/app-misc/tty-clock/Manifest b/app-misc/tty-clock/Manifest new file mode 100644 index 0000000..697fc56 --- /dev/null +++ b/app-misc/tty-clock/Manifest @@ -0,0 +1,2 @@ +DIST v2.3.tar.gz 7764 BLAKE2B 16e764c6321407ba1a4545de6f7aeb5b1b1f3e0d94d2e05ef9a95a20bc178b11962518a946aa292f35be0a293d12e3739353d2da80358e86d4bf9c29983a81d6 SHA512 ff3cfd5c6312377128b33c7e8c2138627b996d1b17730d8a8fdf55e95f2020e591e69317459aab8383d178f3cb71af046b84eeb81cabfa9b09a27008c5f4b626 +EBUILD tty-clock-2.3.ebuild 462 BLAKE2B f991be5e49c8c5a4d1a03f090a8a5752bd84c252218bcb7b996ce0d51d7b9852799271b5e1919f46f38d5decc39d53713bdba1a552a7dd3645d7ce9a26c16127 SHA512 0e8d76558b74e1ac7f16075bdd859061fe027a7526b66c7847b584d99329714e4b081ed535e335fd9cd815d71aad64dee39d1b6fd601bd47ebe8ed478b618026 diff --git a/app-misc/tty-clock/metadata.xml b/app-misc/tty-clock/metadata.xml new file mode 100644 index 0000000..90ac276 --- /dev/null +++ b/app-misc/tty-clock/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>casey@theavilas.org</email> + <name>casey</name> + </maintainer> +</pkgmetadata> diff --git a/app-misc/tty-clock/tty-clock-2.3.ebuild b/app-misc/tty-clock/tty-clock-2.3.ebuild new file mode 100644 index 0000000..8d0ecbb --- /dev/null +++ b/app-misc/tty-clock/tty-clock-2.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Clock using lib ncurses" +HOMEPAGE="https://github.com/xorg62/tty-clock" +SRC_URI="https://github.com/xorg62/${PN}/archive/v${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="sys-libs/ncurses" +RDEPEND="${DEPEND}" +BDEPEND="" + +DOCS="README" + +src_install() { + einstalldocs + emake DESTDIR="${D}" PREFIX="/usr" install +} |