1 # Maintainer: veox <box 55 [shift-two] mail [dot] ru>
4 _clname=cl+ssl # same as _cvsmod used later on
7 pkgdesc="A Common Lisp interface to OpenSSL"
9 url="http://common-lisp.net/project/cl-plus-ssl/"
12 # TODO: add 'cl-asdf' when sbcl has it
13 depends=('common-lisp' 'cl-alexandria' 'cl-babel' 'cl-cffi' 'cl-flexi-streams' 'cl-trivial-features' 'cl-trivial-gray-streams')
14 install=cl-ssl.install
18 _cvsroot=":pserver:anonymous:anonymous@common-lisp.net:/project/cl-plus-ssl/cvsroot"
22 install -d ${pkgdir}/usr/share/common-lisp/source/${_clname}
23 install -d ${pkgdir}/usr/share/common-lisp/systems
24 install -d ${pkgdir}/usr/share/licenses/${pkgname}
28 if [ -d ${_cvsmod}/CVS ]; then
32 cvs -z3 -d ${_cvsroot} co ${_cvsmod}
36 install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname} \
38 install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname} \
40 install -m 644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname} || return 1
42 cd ${pkgdir}/usr/share/common-lisp/systems
43 ln -s ../source/${_clname}/${_clname}.asd .
46 # vim:set ts=2 sw=4 et nospell: