Files
guru/dev-libs/jonquil/jonquil-0.2.0.ebuild
Sergey Torokhov 39cba32eca dev-libs/jonquil: new package, version 0.2.0
Signed-off-by: Sergey Torokhov <torokhov-s-a@yandex.ru>
2023-04-19 03:18:08 +03:00

33 lines
647 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
FORTRAN_STANDARD="2003"
inherit cmake fortran-2
DESCRIPTION="Jonquil: Bringing TOML blooms to JSON land"
HOMEPAGE="https://toml-f.readthedocs.io/en/latest/how-to/jonquil/"
SRC_URI="https://github.com/toml-f/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0 MIT"
SLOT="0/2"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="
dev-libs/toml-f:0/4
test? ( dev-util/fortran-test-drive )
"
src_configure() {
local mycmakeargs=(
-DENABLE_TESTING=$(usex test)
)
cmake_src_configure
}