mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-23 18:38:08 -07:00
23 lines
512 B
Bash
23 lines
512 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=4
|
|
|
|
DESCRIPTION="Simple ASDF2 configuration for Gentoo Common Lisp ports"
|
|
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Common_Lisp/Guide"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ~sparc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-lisp/asdf-2.0"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
src_install() {
|
|
insinto /etc/common-lisp
|
|
newins "${FILESDIR}"/gentoo-init-1.lisp gentoo-init.lisp
|
|
doins "${FILESDIR}"/source-registry.conf
|
|
}
|