diff options
author | azahi <azahi@teknik.io> | 2019-08-10 16:21:41 +0300 |
---|---|---|
committer | azahi <azahi@teknik.io> | 2019-08-10 16:21:41 +0300 |
commit | e3492fa1dbde96d849493a7a7814f851b999c6d8 (patch) | |
tree | c317d448952a2b0fbc3b12c4a092f435281ab6dc /media-sound/mpdas/mpdas-0.4.5.ebuild | |
parent | app-misc/zenbu: Fix redirecting (diff) |
media-sound/mpdas: Add
Diffstat (limited to '')
-rw-r--r-- | media-sound/mpdas/mpdas-0.4.5.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/media-sound/mpdas/mpdas-0.4.5.ebuild b/media-sound/mpdas/mpdas-0.4.5.ebuild new file mode 100644 index 0000000..8634837 --- /dev/null +++ b/media-sound/mpdas/mpdas-0.4.5.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="AudioScrobbler client for MPD written in C++" +HOMEPAGE="https://50hz.ws/mpdas/" +SRC_URI="https://50hz.ws/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +BDEPEND="virtual/pkgconfig" +DEPEND="media-libs/libmpdclient + net-misc/curl +" +RDEPEND="${DEPEND}" + +src_compile() { + tc-export CXX + emake CONFIG="/etc" +} + +src_install() { + dobin ${PN} + doman ${PN}.1 + dodoc mpdasrc.example README +} |