src_prepare-overlay/dev-lang/lci/lci-0.11.2.ebuild
Maciej Barć 15af7b3d8f
*/*: update copyright
Signed-off-by: Maciej Barć <xgqt@riseup.net>
2021-07-07 18:20:27 +02:00

26 lines
458 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
DESCRIPTION="LOLCODE interpreter written in C"
HOMEPAGE="http://www.lolcode.org/"
SRC_URI="https://github.com/justinmeza/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc"
DEPEND="doc? (
app-doc/doxygen
)
"
src_compile() {
cmake_src_compile
use doc && cmake_src_compile docs
}