mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-31 10:58:21 -07:00
Signed-off-by: Anton Fischl <github@fischl-online.de> Part-of: https://codeberg.org/gentoo/gentoo/pulls/1428 Signed-off-by: Sam James <sam@gentoo.org>
22 lines
494 B
Bash
22 lines
494 B
Bash
# Copyright 2021-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Icinga PHP libraries for Icinga Web 2"
|
|
HOMEPAGE="https://github.com/Icinga/icinga-php-thirdparty"
|
|
SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
|
|
DEPEND="dev-lang/php:*"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install() {
|
|
insinto "/usr/share/icinga-php/vendor"
|
|
cd "${S}"
|
|
doins -r *
|
|
}
|