Add cfourcc 0.1.3.1

This commit is contained in:
2019-05-11 10:11:47 +03:00
parent dfaa8785ee
commit b88a5f095f
3 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="console fourcc changer"
HOMEPAGE="https://github.com/mypapit/cfourcc"
SRC_URI="https://github.com/mypapit/${PN}/archive/${PV}.tar.gz"
RESTRICT="mirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_install() {
mkdir "${D}/bin"
emake install PREFIX="${D}" || die "install failed"
dodoc AUTHORS BUGS ChangeLog codeclist.txt README README.md TIPS TODO
}