
- app-misc/over-env - dev-util/over-hex - media-video/over-video - sys-apps/over-rename moving stuff around, fixing things
34 lines
714 B
Bash
34 lines
714 B
Bash
# Copyright 2018 Martin Sekera <sekerama@gmail.com>
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
SUMMARY="A personal collection of scripts, aliases, zsh envs, and a nice prompt."
|
|
HOMEPAGE="https://git.aggregate.cz/overwatch/over-env"
|
|
LICENCES="GPL-3"
|
|
SLOT="0"
|
|
PLATFORMS="~amd64 ~armv7 ~x86"
|
|
MYOPTIONS=""
|
|
SCM_REPOSITORY="https://git.aggregate.cz/overwatch/over-env.git"
|
|
if ! ever is_scm; then
|
|
SCM_BRANCH="${PV}"
|
|
fi
|
|
|
|
DEPENDENCIES="
|
|
run:
|
|
dev-python/psutil[python_abis:*(-)?]
|
|
dev-python/over[python_abis:*(-)?]
|
|
"
|
|
|
|
require scm-git
|
|
|
|
src_install() {
|
|
dobin bin/*
|
|
|
|
exeinto /usr/share/over-env
|
|
doexe lib/*
|
|
|
|
insinto /etc
|
|
doins -r etc/*
|
|
|
|
insinto /usr/share/i18n/locales
|
|
doins locale/*
|
|
}
|