overlay/www-apps/bashblog/bashblog-20170103.ebuild
tastytea 526165d2c2
www-apps/bashblog: Fixed markdown dependency
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
2019-01-26 10:40:47 +01:00

33 lines
576 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="+markdown"
RDEPEND="
markdown? ( dev-perl/Text-Markdown )
"
DEPEND="
"
src_install() {
dobin bb.sh
}