diff options
author | 2020-08-30 20:28:25 +0200 | |
---|---|---|
committer | 2020-08-30 20:58:03 +0200 | |
commit | 3c5de23dea9b039e0202ed46a86eb4ead0f5c7f6 (patch) | |
tree | 1cedbd2035bac245148349c1cd624e9ba7c309cf /net-irc/znc-igloo-push/znc-igloo-push-20200520.ebuild | |
parent | kde-apps/kget: Restrict tests in this version (diff) | |
download | gentoo-3c5de23dea9b039e0202ed46a86eb4ead0f5c7f6.tar.gz gentoo-3c5de23dea9b039e0202ed46a86eb4ead0f5c7f6.tar.bz2 gentoo-3c5de23dea9b039e0202ed46a86eb4ead0f5c7f6.zip |
net-irc/znc-igloo-push: new package
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'net-irc/znc-igloo-push/znc-igloo-push-20200520.ebuild')
-rw-r--r-- | net-irc/znc-igloo-push/znc-igloo-push-20200520.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/net-irc/znc-igloo-push/znc-igloo-push-20200520.ebuild b/net-irc/znc-igloo-push/znc-igloo-push-20200520.ebuild new file mode 100644 index 000000000000..4022d504d1af --- /dev/null +++ b/net-irc/znc-igloo-push/znc-igloo-push-20200520.ebuild @@ -0,0 +1,37 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_COMMIT="f952b87a1fc235917a28fbabbe8626719d622e4c" + +DESCRIPTION="A ZNC module which provides push notifications for Igloo client" +HOMEPAGE="https://git.jordanko.ch/Igloo/Push" +SRC_URI="https://git.jordanko.ch/Igloo/Push/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + net-irc/znc:=[ssl]" + +RDEPEND="${DEPEND}" + +DOCS=( README.md ) + +S="${WORKDIR}/push" + +src_prepare() { + default + + # No parallel build support + MAKEOPTS=-j1 +} + +src_install() { + insinto /usr/$(get_libdir)/znc + doins push.so + + einstalldocs +} |