blob: bff3e330f0f68212e397f126ca5d7d5017f8cb36 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-curl/cl-curl-20050609.ebuild,v 1.1 2005/06/10 04:45:43 mkennedy Exp $
inherit common-lisp eutils
DESCRIPTION="Common Lisp interface to libcurl, a multi-protocol file transfer library"
HOMEPAGE="http://sourceforge.net/projects/cl-curl/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-lisp/cl-uffi
net-misc/curl"
CLPACKAGE=curl
S=${WORKDIR}/curl
src_install() {
common-lisp-install *.lisp *.asd
common-lisp-system-symlink
insinto $CLSOURCEROOT/${CLPACKAGE}/clcurl
doins clcurl/*.c
dodoc index.html style.css
}
|