diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-10-17 16:37:25 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-10-17 16:37:55 +0200 |
commit | 079e5dc960720c3abbd6c939cff5c8919b3f5fb8 (patch) | |
tree | fcaed04b0f05345e288c49cf285996efee16a807 /sys-apps/edid-decode/edid-decode-0_pre20211012.ebuild | |
parent | sys-apps/hw-probe: bump to version 1.6 (diff) | |
download | gentoo-079e5dc960720c3abbd6c939cff5c8919b3f5fb8.tar.gz gentoo-079e5dc960720c3abbd6c939cff5c8919b3f5fb8.tar.bz2 gentoo-079e5dc960720c3abbd6c939cff5c8919b3f5fb8.zip |
sys-apps/edid-decode: bump to latest snapshot
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-apps/edid-decode/edid-decode-0_pre20211012.ebuild')
-rw-r--r-- | sys-apps/edid-decode/edid-decode-0_pre20211012.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sys-apps/edid-decode/edid-decode-0_pre20211012.ebuild b/sys-apps/edid-decode/edid-decode-0_pre20211012.ebuild new file mode 100644 index 000000000000..61dcec67ff52 --- /dev/null +++ b/sys-apps/edid-decode/edid-decode-0_pre20211012.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +EGIT_COMMIT="95d81c95f89424bc5ff541d941eeea4addeeda1c" +MY_P="${PN}-${EGIT_COMMIT}" + +DESCRIPTION="Decode EDID data in a human-readable format" +HOMEPAGE="https://git.linuxtv.org/edid-decode.git/" +SRC_URI="https://dev.gentoo.org/~conikost/files/${P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +KEYWORDS="~amd64 ~x86" +LICENSE="MIT" +SLOT="0" +IUSE="examples" + +src_compile() { + tc-export CXX + default +} + +src_install() { + emake DESTDIR="${ED}" install + einstalldocs + + if use examples; then + insinto /usr/share/edid-decode/examples + doins data/* + fi +} |