
- app-misc/over-env - dev-util/over-hex - media-video/over-video - sys-apps/over-rename moving stuff around, fixing things
41 lines
1 KiB
Bash
41 lines
1 KiB
Bash
# Copyright 2018 Martin Sekera <sekerama@gmail.com>
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
SUMMARY="Audio-video format converter."
|
|
DESCRIPTION="A video converter meant to coerce all video formats into one format with properly normalized audio. It can also be used to extract audio from video files, resizing, or very basic cutting."
|
|
HOMEPAGE="https://git.aggregate.cz/overwatch/${PN}"
|
|
LICENCES="GPL-3"
|
|
SLOT="0"
|
|
PLATFORMS="~amd64 ~armv7 ~x86"
|
|
MYOPTIONS="
|
|
( providers: ffmpeg libav ) [[ number-selected = exactly-one ]]
|
|
"
|
|
SCM_REPOSITORY="https://git.aggregate.cz/overwatch/${PN}.git"
|
|
if ! ever is_scm; then
|
|
SCM_BRANCH="${PV}"
|
|
fi
|
|
|
|
DEPENDENCIES="
|
|
run:
|
|
dev-python/over
|
|
(
|
|
providers:ffmpeg? ( media/ffmpeg )
|
|
providers:libav? ( media/libav )
|
|
)
|
|
|
|
"
|
|
|
|
require scm-git
|
|
|
|
src_install() {
|
|
exeinto /usr/share/${PN}
|
|
doexe ${PN}.py
|
|
|
|
insinto /usr/share/${PN}
|
|
doins aux.py version.py
|
|
|
|
dodoc doc/*
|
|
|
|
dodir /usr/$(exhost --target)/bin
|
|
dosym /usr/share/${PN}/${PN}.py /usr/$(exhost --target)/bin/${PN}
|
|
}
|