mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 06:57:59 +02:00
34 lines
702 B
Bash
34 lines
702 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Fedora's Static PSR-4, PSR-0, and classmap autoloader"
|
|
HOMEPAGE="https://github.com/php-fedora/autoloader"
|
|
SRC_URI="https://github.com/php-fedora/autoloader/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm ~arm64 ~hppa ppc64 ~s390 sparc x86"
|
|
|
|
IUSE="test"
|
|
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="dev-lang/php:*"
|
|
DEPEND="
|
|
test? (
|
|
${RDEPEND}
|
|
dev-php/phpunit )"
|
|
|
|
S="${WORKDIR}/autoloader-${PV}"
|
|
|
|
src_install() {
|
|
insinto "/usr/share/php/Fedora/Autoloader"
|
|
doins -r src/.
|
|
dodoc CHANGELOG.md README.md
|
|
}
|
|
|
|
src_test() {
|
|
phpunit || die "test suite failed"
|
|
}
|