blob: a7aa4f8fecd24a3ff2ce49ce87ad45237fe764e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2
DESCRIPTION="A Common Lisp library of semi-standard utilities."
HOMEPAGE="http://common-lisp.net/project/cl-utilities/"
SRC_URI="http://common-lisp.net/project/cl-utilities/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
src_install() {
common-lisp-install *.lisp ${PN}.asd
common-lisp-symlink-asdf
dodoc README
dohtml doc/*
}
|