You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ml/ocplib-simplex/ocplib-simplex-0.4.ebuild

34 lines
754 B

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools findlib multilib
DESCRIPTION="A library implementing a simplex algorithm"
HOMEPAGE="https://github.com/OCamlPro-Iguernlala/ocplib-simplex"
SRC_URI="https://github.com/OCamlPro-Iguernlala/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0"
KEYWORDS="amd64"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
DOCS="CHANGES.md README.md extra/simplex_invariants.txt extra/TODO.txt"
src_prepare() {
default
mv configure.{in,ac} || die
sed -i -e "s:configure.in:configure.ac:g" \
Makefile.in
eautoreconf
}
src_install() {
findlib_src_install LIBDIR="${D}"/usr/"$(get_libdir)"/ocaml
}