updated on Mon Jan 23 12:00:23 UTC 2012
[aur-mirror.git] / cl-vecto / PKGBUILD
blob3a6014cd931cf3450073ee3e6c8fa1afed732c71
1 # Maintainer:  Taras Shpot <mrshpot at gmail dot com>
3 pkgname=cl-vecto
4 _clname=vecto
5 pkgver=1.4.3
6 pkgrel=1
7 pkgdesc="a simplified interface to the powerful CL-VECTORS vector rasterization library"
8 arch=('i686' 'x86_64')
9 url="http://www.xach.com/lisp/vecto/"
10 license=('BSD')
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')
18 build() {
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/*
34         
35     cd ${pkgdir}/usr/share/common-lisp/systems
36     ln -s ../source/${_clname}/${_clname}.asd .
39 # vim:set ts=2 sw=4 et nospell: