forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-lang/lfe: Bump, thanks to Michael Kuijn
Package-Manager: portage-2.2.27
- Loading branch information
1 parent
032a08c
commit 739c81e
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST v0.10.1.zip 296228 SHA256 05de4cd5a15ea37e505049c5d7e9c75fbb61ce1bcabec39d762df3dbeda7d814 SHA512 94719b42ecf6dc5505ea649df00b255b1e901d6104426192f34692e2f7bc85940b96b39fd1bfa00577b63c17e10d8fd51d3de743c02d8ac2263abe2fb47d4498 WHIRLPOOL a3c4420421afd45bf6a0908a3a0f42319a094d4d186636eebe5f58b4f2d11192c0a7cbc6eee7dbc1aa48f326fed8c1869932e4d277c41387f790006675f4985d | ||
DIST v0.7a.zip 216133 SHA256 c494135bf50a8dd62723e026a6b4cf4c5c4d6b8a01e59b6e41bbb6daf5c25dd3 SHA512 93f1b0e81275af21d3dbee73f364f4b67d4ce2d6beb7fe2c17e17d5f5330ec8762d63978ae291267ddd92d311b2ad7d2572854b5e3da9c884f4c706e23551aaa WHIRLPOOL 44067ac8e529d54e66cb18d0ae11c3f7d3a489b530f995e90eb000aae9e212ce79abc57388c515a681265a0242f568ae7efb3e1307e937c3aad55438b6d7b0da |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 1999-2014 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit multilib | ||
|
||
DESCRIPTION="Lisp-flavoured Erlang" | ||
HOMEPAGE="http://lfe.github.io/" | ||
SRC_URI="https://github.com/rvirding/lfe/archive/v${PV}.zip" | ||
|
||
LICENSE="BSD-2" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
RDEPEND="dev-lang/erlang" | ||
DEPEND="${RDEPEND}" | ||
|
||
src_prepare() { | ||
export PATH="${S}/bin:$PATH" | ||
} | ||
|
||
src_compile() { | ||
emake compile -j1 | ||
} | ||
|
||
src_install() { | ||
dobin bin/lfe | ||
dobin bin/lfec | ||
dobin bin/lfescript | ||
dodir /usr/$(get_libdir)/erlang/lib/lfe/ebin/ | ||
dodir /usr/$(get_libdir)/erlang/lib/lfe/emacs/ | ||
cp -R "${S}/ebin" "${D}/usr/$(get_libdir)/erlang/lib/lfe/" | ||
cp -R "${S}/emacs" "${D}/usr/$(get_libdir)/erlang/lib/lfe/" | ||
} |