blob: 17aa48b185801c25ab1bd684aff26b6d9639e878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="I18n made easy for web sites written with eliom"
HOMEPAGE="https://github.com/besport/ocsigen-i18n"
SRC_URI="https://github.com/besport/ocsigen-i18n/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-lang/ocaml:="
DEPEND="${RDEPEND}
dev-ml/findlib"
src_install() {
dodir /usr/bin
emake bindir="${ED}/usr/bin" install
dodoc README.MD
}
|