29 lines
491 B
Bash
29 lines
491 B
Bash
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python3_{3,4} )
|
|
|
|
inherit python-r1 git-r3
|
|
|
|
DESCRIPTION="dustin.hatch.name Website"
|
|
HOMEPAGE="http://dustin.hatch.name/"
|
|
SRC_URI=""
|
|
EGIT_REPO_URI="git://shyla.pyrocufflink.jazz/${PN}.git"
|
|
EGIT_BRANCH="master"
|
|
|
|
LICENSE=""
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="
|
|
dev-python/jinja[${PYTHON_USEDEP}]
|
|
dev-python/milla[${PYTHON_USEDEP}]
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
src_install() {
|
|
dodir /usr/share/${PN}
|
|
cp -r * ${D}/usr/share/${PN} || die
|
|
}
|