Skip to content

Instantly share code, notes, and snippets.

@Jach
Last active June 3, 2016 02:08
Show Gist options
  • Select an option

  • Save Jach/774c4caf9dc8de3d6daeef42303513e2 to your computer and use it in GitHub Desktop.

Select an option

Save Jach/774c4caf9dc8de3d6daeef42303513e2 to your computer and use it in GitHub Desktop.
quick and dirty ebuild for roswell, installed under local dev-lisp/roswell/
# 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