mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-02 23:48:17 -07:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
35 lines
703 B
Bash
35 lines
703 B
Bash
# Copyright 1999-2025 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"
|
|
}
|