diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2017-11-27 12:25:47 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2017-11-27 13:28:50 +0100 |
commit | ff565a72c96b1151dec6de4027b1c8395a7958d6 (patch) | |
tree | a058a5525fb5138cc395310550825a89a7392785 /x11-plugins/wmamixer/wmamixer-0.2.ebuild | |
parent | x11-plugins/wmsmixer: update homepage and SRC_URI (diff) | |
download | gentoo-ff565a72c96b1151dec6de4027b1c8395a7958d6.tar.gz gentoo-ff565a72c96b1151dec6de4027b1c8395a7958d6.tar.bz2 gentoo-ff565a72c96b1151dec6de4027b1c8395a7958d6.zip |
x11-plugins/wmamixer: initial commit
Based on wmsmixer code and ebuild
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'x11-plugins/wmamixer/wmamixer-0.2.ebuild')
-rw-r--r-- | x11-plugins/wmamixer/wmamixer-0.2.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/x11-plugins/wmamixer/wmamixer-0.2.ebuild b/x11-plugins/wmamixer/wmamixer-0.2.ebuild new file mode 100644 index 000000000000..a684fbdad792 --- /dev/null +++ b/x11-plugins/wmamixer/wmamixer-0.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit toolchain-funcs + +DESCRIPTION="ALSA mixer dockapp, fork of wmsmixer" +HOMEPAGE="https://github.com/gryf/wmamixer" +SRC_URI="https://github.com/gryf/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/libXpm + x11-libs/libXext + x11-libs/libX11" +DEPEND="${RDEPEND} + x11-proto/xproto" + +DOCS=( README.rst ) +src_compile() { + $(tc-getCC) ${CFLAGS} -c -o wmamixer.o wmamixer.c + $(tc-getCC) ${LDFLAGS} -o wmamixer wmamixer.o -lm -lXpm -lXext -lX11 -lasound +} + +src_install() { + dobin wmamixer + einstalldocs +} |