mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson <telans@posteo.de>
30 lines
552 B
Bash
30 lines
552 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit xdg
|
|
|
|
DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3"
|
|
HOMEPAGE="https://github.com/SrainApp/srain"
|
|
SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
IUSE="debug"
|
|
|
|
RDEPEND="
|
|
>=x11-libs/gtk+-3.22.0
|
|
x11-libs/libnotify
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
dev-libs/libconfig
|
|
net-libs/libsoup
|
|
"
|
|
|
|
src_configure() {
|
|
econf $(use_enable debug)
|
|
}
|