summaryrefslogtreecommitdiff
path: root/dev-ml/ocaml-inifiles/ocaml-inifiles-1.2.ebuild
blob: 7611ae6b219e13d62e15707b8d6a4924d5bd7f21 (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
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit findlib

DESCRIPTION="A small OCaml library to read and write .ini files"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI="http://archive.ubuntu.com/ubuntu/pool/universe/o/${PN}/${PN}_${PV}.orig.tar.gz"
S="${WORKDIR}/inifiles-${PV}"

LICENSE="LGPL-2.1+"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="+ocamlopt"

RDEPEND="dev-ml/pcre-ocaml:="
DEPEND="${RDEPEND}"

PATCHES=(
	"${FILESDIR}"/${P}-inifiles.ml.patch
	"${FILESDIR}"/${P}-shuffle.patch
)

src_compile() {
	emake -j1
	use ocamlopt && emake -j1 opt
}

src_install() {
	findlib_src_install
}