Last active
June 3, 2016 02:08
-
-
Save Jach/774c4caf9dc8de3d6daeef42303513e2 to your computer and use it in GitHub Desktop.
quick and dirty ebuild for roswell, installed under local dev-lisp/roswell/
This file contains hidden or 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
| # Copyright 1999-2016 Gentoo Foundation | |
| # Distributed under the terms of the GNU General Public License v2 | |
| # $Header: $ | |
| EAPI=5 | |
| inherit eutils autotools | |
| DESCRIPTION="Common Lisp environment setup utility" | |
| HOMEPAGE="https://github.com/roswell/roswell" | |
| SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> ${P}.tar.gz" | |
| LICENSE="MIT" | |
| SLOT="0" | |
| KEYWORDS="amd64" | |
| IUSE="" | |
| DEPEND="" | |
| RDEPEND="" | |
| src_prepare() { | |
| sh bootstrap || die | |
| eautoreconf | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment