updated on Sun Jan 22 12:09:12 UTC 2012
[aur-mirror.git] / cl-zpng / PKGBUILD
blobd9328a2cf556116b220ca44eebe8051b1399d801
1 # Maintainer:  Taras Shpot <mrshpot at gmail dot com>
3 pkgname=cl-zpng
4 _clname=zpng
5 pkgver=1.2
6 pkgrel=1
7 pkgdesc="a Common Lisp library for creating PNG files"
8 arch=('i686' 'x86_64')
9 url="http://www.xach.com/lisp/zpng/"
10 license=('BSD')
12 depends=('common-lisp' 'cl-asdf' 'cl-salza2')
14 install=cl-zpng.install
15 source=('http://www.xach.com/lisp/zpng.tgz')
16 md5sums=('040409ca2c870b94c4ad631c6364caff')
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: