blob: ce985ece45a7c81d1d6ccc7c5709de243cb21ab7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
KEYWORDS="~amd64 ~x86"
DESCRIPTION="SabreAMF is a Flash Remoting server and client for PHP"
HOMEPAGE="https://github.com/evert/SabreAMF"
SRC_URI="https://github.com/evert/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
IUSE="examples"
RDEPEND="dev-php/fedora-autoloader"
DOCS=( README.md ChangeLog )
src_install() {
insinto /usr/share/php/${PN}
doins -r lib/${PN}/* "${FILESDIR}/autoload.php"
einstalldocs
if use examples ; then
insinto /usr/share/doc/${P}/examples
docompress -x /usr/share/doc/${P}/examples
doins examples/*
fi
}
|