1 # Maintainer: veox <box 55 [shift-two] mail [dot] ru>
7 pkgdesc="Implements streams capable of chunked encoding on demand as defined in RFC 2616"
9 url="http://www.weitz.de/chunga/"
12 # TODO: replace this segment with 'common-lisp' when all provide it.
13 depends=('common-lisp' 'cl-flexi-streams' 'cl-trivial-gray-streams')
15 install=cl-chunga.install
16 options=('docs') # TODO: how does this work?
17 source=('http://weitz.de/files/chunga.tar.gz' 'LICENSE')
18 md5sums=('57bc5806a78ab65bfe239a67c4e85b89' '63605eed7c939d885851f2e876ce3f14')
21 install -d ${pkgdir}/usr/share/common-lisp/source/${_clname}
22 install -d ${pkgdir}/usr/share/common-lisp/systems
23 install -d ${pkgdir}/usr/share/licenses/${pkgname}
25 cd ${srcdir}/${_clname}-${pkgver}
27 install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname} \
28 ${srcdir}/${_clname}-${pkgver}/*.lisp
29 install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname} \
30 ${srcdir}/${_clname}-${pkgver}/*.asd
31 install -m 644 ${srcdir}/LICENSE \
32 ${pkgdir}/usr/share/licenses/${pkgname}
34 cd ${pkgdir}/usr/share/common-lisp/systems
35 ln -s ../source/${_clname}/${_clname}.asd .
38 # vim:set ts=2 sw=4 et nospell: