1 # Maintainer: Taras Shpot <mrshpot at gmail dot com>
7 pkgdesc="a simplified interface to the powerful CL-VECTORS vector rasterization library"
9 url="http://www.xach.com/lisp/vecto/"
12 depends=('common-lisp' 'cl-asdf' 'cl-vectors' 'cl-zpb-ttf' 'cl-zpng')
14 install=cl-vecto.install
15 source=('http://www.xach.com/lisp/vecto.tgz')
16 md5sums=('d9d8320bdbcff01fd6de4095d60fdf07')
19 ### TODO: finish this. I've only filled in the versions ans URLs
20 install -d ${pkgdir}/usr/share/common-lisp/source/${_clname}
21 install -d ${pkgdir}/usr/share/common-lisp/systems
22 install -d ${pkgdir}/usr/share/doc/${pkgname}
24 cd ${srcdir}/${_clname}-${pkgver}
26 install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname} \
27 ${srcdir}/${_clname}-${pkgver}/*.lisp
28 install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname} \
29 ${srcdir}/${_clname}-${pkgver}/${_clname}.asd
31 install -m 644 -t ${pkgdir}/usr/share/doc/${pkgname} \
32 ${srcdir}/${_clname}-${pkgver}/doc/*
35 cd ${pkgdir}/usr/share/common-lisp/systems
36 ln -s ../source/${_clname}/${_clname}.asd .
39 # vim:set ts=2 sw=4 et nospell: