forked from tastytea/overlay
tastytea
9ead6299c0
Package-Manager: Portage-2.3.51, Repoman-2.3.11 Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
33 lines
582 B
Bash
33 lines
582 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="A single Bash script to create blogs."
|
|
HOMEPAGE="https://github.com/cfenollosa/bashblog"
|
|
EGIT_REPO_URI="https://github.com/cfenollosa/bashblog.git"
|
|
if [[ "${PV}" != "99999999" ]]; then
|
|
EGIT_COMMIT_DATE="${PV}"
|
|
fi
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
if [[ "${PV}" == "99999999" ]]; then
|
|
KEYWORDS=""
|
|
else
|
|
KEYWORDS="~amd64 ~x86"
|
|
fi
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
|| ( app-text/peg-markdown dev-perl/Text-Markdown )
|
|
"
|
|
DEPEND="
|
|
"
|
|
|
|
src_install() {
|
|
dobin bb.sh
|
|
}
|