diff options
author | Brian Evans <grknight@gentoo.org> | 2017-03-09 10:16:19 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2017-03-09 11:21:11 -0500 |
commit | 3361d878f1cefb3f8d31e5f8e20ccf62619117fc (patch) | |
tree | 6652ba64c52151ba15787c6b5c2de3073c74c224 /dev-php/sebastian-resource-operations/sebastian-resource-operations-1.0.0.ebuild | |
parent | dev-php/sebastian-version: New package for an unbundled phpunit (diff) | |
download | gentoo-3361d878f1cefb3f8d31e5f8e20ccf62619117fc.tar.gz gentoo-3361d878f1cefb3f8d31e5f8e20ccf62619117fc.tar.bz2 gentoo-3361d878f1cefb3f8d31e5f8e20ccf62619117fc.zip |
dev-php/sebastian-resource-operations: New package for an unbundled phpunit
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Diffstat (limited to 'dev-php/sebastian-resource-operations/sebastian-resource-operations-1.0.0.ebuild')
-rw-r--r-- | dev-php/sebastian-resource-operations/sebastian-resource-operations-1.0.0.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-php/sebastian-resource-operations/sebastian-resource-operations-1.0.0.ebuild b/dev-php/sebastian-resource-operations/sebastian-resource-operations-1.0.0.ebuild new file mode 100644 index 000000000000..9c70fe7addb4 --- /dev/null +++ b/dev-php/sebastian-resource-operations/sebastian-resource-operations-1.0.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_PN="${PN/sebastian-//}" + +DESCRIPTION="Provides a list of PHP built-in functions that operate on resources" +HOMEPAGE="http://phpunit.de" +SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S="${WORKDIR}/${MY_PN}-${PV}" + +RDEPEND="dev-php/fedora-autoloader + >=dev-lang/php-5.6:* + " + +src_install() { + insinto /usr/share/php/SebastianBergmann/ResourceOperations + doins -r src/* + doins "${FILESDIR}/autoload.php" +} |