diff options
author | Azat Bahawi <azahi@teknik.io> | 2020-08-12 13:08:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-12 13:08:34 +0300 |
commit | 80f2484d233f841ffcb2f15f64b76ea5a8d30f50 (patch) | |
tree | ffc9b40ff24a350870a66c3f37bc1148b8cd6678 /app-misc/tty-clock/tty-clock-2.3.ebuild | |
parent | x11-misc/paperview: Add package (diff) | |
parent | Add metadata.xml (diff) |
Merge pull request #3 from kc-kc/master
Add tty-clock
Diffstat (limited to 'app-misc/tty-clock/tty-clock-2.3.ebuild')
-rw-r--r-- | app-misc/tty-clock/tty-clock-2.3.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
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 +} |