blob: e4762250c2c339a90571814ef1aa05c88d247532 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2
MY_PV=${PV:0:4}-${PV:4:2}-${PV:6:2}
DESCRIPTION="An HTML parser written in Common Lisp."
HOMEPAGE="http://common-lisp.net/project/closure/closure-html/"
SRC_URI="http://common-lisp.net/project/closure/download/${PN}-${MY_PV}.tgz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="dev-lisp/closure-common
dev-lisp/flexi-streams"
S="${WORKDIR}"/${PN}-${MY_PV}
src_install() {
common-lisp-install ${PN}.asd resources src
common-lisp-symlink-asdf
dodoc README
dohtml doc/*.{html,css}
}
|