diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2021-08-23 10:24:51 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2021-08-23 10:25:08 -0500 |
commit | 7d4b54c098973ccbc4ed9952584a9b944dc57038 (patch) | |
tree | f5bb7374719cb4e7adf32105f95933c4a86d06ed /dev-libs/icinga-php-library/icinga-php-library-0.6.1-r1.ebuild | |
parent | dev-libs/icinga-php-thirdparty: install lib to correct dir (diff) | |
download | gentoo-7d4b54c098973ccbc4ed9952584a9b944dc57038.tar.gz gentoo-7d4b54c098973ccbc4ed9952584a9b944dc57038.tar.bz2 gentoo-7d4b54c098973ccbc4ed9952584a9b944dc57038.zip |
dev-libs/icinga-php-library: install lib to correct dir
Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'dev-libs/icinga-php-library/icinga-php-library-0.6.1-r1.ebuild')
-rw-r--r-- | dev-libs/icinga-php-library/icinga-php-library-0.6.1-r1.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-libs/icinga-php-library/icinga-php-library-0.6.1-r1.ebuild b/dev-libs/icinga-php-library/icinga-php-library-0.6.1-r1.ebuild new file mode 100644 index 000000000000..f2df581a5c4b --- /dev/null +++ b/dev-libs/icinga-php-library/icinga-php-library-0.6.1-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Icinga PHP libraries for Icinga Web 2." +HOMEPAGE="https://github.com/Icinga/icinga-php-library" +MY_GITHUB_AUTHOR="Icinga" +SRC_URI="https://github.com/${MY_GITHUB_AUTHOR}/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86" + +DEPEND="dev-lang/php:*" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_install() { + insinto "/usr/share/icinga-php/ipl" + cd "${S}" + doins -r * +} |