mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
dev-php/SabreAMF: Version bump for 1.5.0 tag
Signed-off-by: Brian Evans <grknight@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST SabreAMF-1.3.234_p0.tar.gz 82526 BLAKE2B 9c6726db4d7920ed202014de803e755a481bb49addce8035533b8b9507f6cff40bd18d1a27e812084518748edf36d7d1b2ae5460e7414cec59e7bbf142428514 SHA512 4aef460300d6af925b228ec9fbde635851ec42ac3c9920165df4175b7e7de2d0bc9225bda869c095b8751d7e7f39ecb20866e8a9190df4c728c37f7de60ec4cc
|
||||
DIST SabreAMF-1.5.0.tar.gz 83408 BLAKE2B 2df210f9a42e00de0adfac94ff9b89ccc918796c79e7df5602ba71bf8cf44ebea7374557d1062e1f95c9578cc95451daf36986e98042f2bdcb17e43581096cfe SHA512 4c0eead7f3adb64001cb4f40f680ade4cd0259d8b24d57970081e19447a69269753c5c5adecef327ba3a9f0cb2c14ff05575c289694bee752007f03e14af4d0f
|
||||
|
||||
29
dev-php/SabreAMF/SabreAMF-1.5.0.ebuild
Normal file
29
dev-php/SabreAMF/SabreAMF-1.5.0.ebuild
Normal file
@@ -0,0 +1,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
|
||||
}
|
||||
8
dev-php/SabreAMF/files/autoload.php
Normal file
8
dev-php/SabreAMF/files/autoload.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/* Autoloader for dev-php/SabreAMF */
|
||||
|
||||
if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
|
||||
require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
|
||||
}
|
||||
|
||||
Fedora\Autoloader\Autoload::addPsr0('SabreAMF_', __DIR__.'/..');
|
||||
Reference in New Issue
Block a user