blob: fa5f86e3b9e37b8de9806621df8fe361d149bee2 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit common-lisp-3 git-r3
DESCRIPTION="CFFI Add-on: Foreign Structures By Value."
HOMEPAGE="http://common-lisp.net/project/gsll/"
EGIT_REPO_URI="git://repo.or.cz/fsbv.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND=">=dev-lisp/cffi-0.10.5
dev-lisp/trivial-features
virtual/libffi"
src_install() {
common-lisp-install-sources *.lisp
common-lisp-install-asdf
dohtml readme.html
}
|