diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2023-03-01 19:40:21 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2023-03-01 19:42:08 +0100 |
commit | cfbc90435891fd1c0e27f514e56493af0e034c68 (patch) | |
tree | b4c4089990eeb880e15b4b465e12cd96ee7e6315 /dev-ml/dune-build-info/dune-build-info-3.7.0.ebuild | |
parent | www-servers/nginx-unit/files: Update conf.d and init.d files (diff) | |
download | gentoo-cfbc90435891fd1c0e27f514e56493af0e034c68.tar.gz gentoo-cfbc90435891fd1c0e27f514e56493af0e034c68.tar.bz2 gentoo-cfbc90435891fd1c0e27f514e56493af0e034c68.zip |
dev-ml/dune-build-info: add 3.7.0
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ml/dune-build-info/dune-build-info-3.7.0.ebuild')
-rw-r--r-- | dev-ml/dune-build-info/dune-build-info-3.7.0.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-ml/dune-build-info/dune-build-info-3.7.0.ebuild b/dev-ml/dune-build-info/dune-build-info-3.7.0.ebuild new file mode 100644 index 000000000000..2b60d3970e73 --- /dev/null +++ b/dev-ml/dune-build-info/dune-build-info-3.7.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune multiprocessing + +DESCRIPTION="Embed locations informations inside executable and libraries" +HOMEPAGE="https://github.com/ocaml/dune" +SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz -> dune-${PV}.tar.gz" +S="${WORKDIR}/dune-${PV}" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+ocamlopt" +RESTRICT="test" + +RDEPEND=">=dev-ml/dune-3.5" +DEPEND="${RDEPEND}" + +src_configure() { + : +} + +src_compile() { + dune build -p ${PN} @install --display short -j $(makeopts_jobs) || die +} |