diff options
author | Wynn Wolf Arbor | 2020-01-13 15:59:49 +0100 |
---|---|---|
committer | Wynn Wolf Arbor | 2020-01-13 15:59:49 +0100 |
commit | 90b60b5044587535e792ed5410acbf10a76963e7 (patch) | |
tree | 316d681581cb2b3a4218f31e72cab376e70b8252 /app-text/lowdown/lowdown-0.4.6.ebuild | |
download | pramantha-90b60b5044587535e792ed5410acbf10a76963e7.tar.gz |
Initial import
Diffstat (limited to '')
-rw-r--r-- | app-text/lowdown/lowdown-0.4.6.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app-text/lowdown/lowdown-0.4.6.ebuild b/app-text/lowdown/lowdown-0.4.6.ebuild new file mode 100644 index 0000000..baaefc9 --- /dev/null +++ b/app-text/lowdown/lowdown-0.4.6.ebuild @@ -0,0 +1,23 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Simple markdown translator" +HOMEPAGE="https://kristaps.bsd.lv/lowdown/" +SRC_URI="https://kristaps.bsd.lv/lowdown/snapshots/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +RESTRICT="mirror" + +src_configure() { + ./configure PREFIX="${EPREFIX}/usr" MANDIR="${EPREFIX}/usr/share/man" +} |