2021-06-13 20:43:50 -04:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2020-11-08 19:20:38 -05:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
2021-06-13 20:43:50 -04:00
|
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/patriciogonzalezvivo/glslViewer.git"
|
|
|
|
EGIT_SUBMODULES=( include/miniaudio )
|
2020-11-08 19:20:38 -05:00
|
|
|
|
|
|
|
DESCRIPTION="Console-based sandbox for GLSL shaders"
|
|
|
|
HOMEPAGE="http://patriciogonzalezvivo.com/2015/glslViewer/"
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
|
|
|
|
2021-06-13 20:43:50 -04:00
|
|
|
DEPEND="media-libs/glfw"
|
2020-11-08 19:20:38 -05:00
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND=""
|
|
|
|
|
|
|
|
src_install() {
|
2021-06-13 20:43:50 -04:00
|
|
|
dobin "${S}/glslViewer"
|
2020-11-08 19:20:38 -05:00
|
|
|
}
|