# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 DESCRIPTION="A dynamic programming language that targets the Java Virtual Machine" HOMEPAGE="https://clojure.org/" SRC_URI="https://download.clojure.org/install/clojure-tools-1.9.0.381.tar.gz" LICENSE="EPL-1.0 Apache-2.0" SLOT="1.9" KEYWORDS="~amd64" RDEPEND=">=virtual/jre-1.6 app-misc/rlwrap" DEPEND="" S="${WORKDIR}/clojure-tools" CLOJURE_LIB_DIR="/usr/share/clojure" src_prepare() { default sed -i -e "s|PREFIX|$CLOJURE_LIB_DIR|g" clojure } src_install() { insinto $CLOJURE_LIB_DIR doins deps.edn doins example-deps.edn insinto $CLOJURE_LIB_DIR/libexec doins clojure-tools-1.9.0.381.jar dobin clojure dobin clj doman clojure.1 doman clj.1 }