44 lines
986 B
Bash
44 lines
986 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=8
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="An Object Oriented library to convert video/audio files with FFmpeg / AVConv."
|
|
HOMEPAGE="https://github.com/PHP-FFMpeg/PHP-FFMpeg"
|
|
EGIT_REPO_URI="https://github.com/PHP-FFMpeg/PHP-FFMpeg.git"
|
|
#EGIT_BRANCH="master"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="test"
|
|
|
|
# https://wiki.gentoo.org/wiki/Composer_packaging
|
|
#TODO: Add composer dependencies
|
|
DEPEND="dev-lang/php:*
|
|
media-video/ffmpeg
|
|
dev-php/fedora-autoloader"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${PF}/src"
|
|
|
|
src_prepare() {
|
|
default
|
|
if use test; then
|
|
cp "${FILESDIR}"/autoload.php "${S}"/autoload-test.php || die
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
insinto "/usr/share/php/FFMpeg"
|
|
doins -r FFMpeg/. "${FILESDIR}"/autoload.php
|
|
dodoc "${WORKDIR}/${PF}"/README.md
|
|
}
|
|
|
|
src_test() {
|
|
phpunit --bootstrap "${S}"/autoload-test.php || die "test suite failed"
|
|
}
|
|
|