summaryrefslogtreecommitdiff
blob: 1bb4196458266cf280181f8b18c20df6c6c2aed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

AT_M4DIR="m4"
inherit autotools findlib

DESCRIPTION="OCaml bindings for libbz (AKA, bzip2)"
HOMEPAGE="https://gitlab.com/irill/camlbz2"
SRC_URI="https://gitlab.com/irill/camlbz2/-/archive/${PV}/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86"

DEPEND="
	app-arch/bzip2
	>=dev-lang/ocaml-3.12:=[ocamlopt]
"
RDEPEND="${DEPEND}"

src_prepare() {
	default

	mkdir m4 || die
	mv ocaml.m4 m4 || die

	eautoreconf
}

src_compile() {
	emake -j1 all
}

src_install() {
	findlib_src_preinst
	emake DESTDIR="${OCAMLFIND_DESTDIR}" install
}