updated on Mon Jan 16 16:00:41 UTC 2012
[aur-mirror.git] / cl-base64 / PKGBUILD
blob7b354f41d082587c08993dd628df9862f7164ef1
1 # Maintainer:  veox <box 55 [shift-two] mail [dot] ru>
3 pkgname=cl-base64
4 pkgver=3.3.3
5 pkgrel=3
6 pkgdesc="Base64 encoding and decoding library for Common Lisp"
7 arch=('i686' 'x86_64')
8 url="http://www.cliki.net/cl-base64"
9 license=('BSD')
10 # TODO: add 'cl-asdf*' when SBCL 'provides' it
11 depends=('common-lisp')
12 install=cl-base64.install
13 options=('docs')  # TODO: how does this work?
14 source=('http://files.b9.com/cl-base64/cl-base64-latest.tar.gz')
15 md5sums=('ddea99fdeae11781434cd569a88e4150')
17 build() {
18     install -d ${pkgdir}/usr/share/common-lisp/source/${pkgname}
19     install -d ${pkgdir}/usr/share/common-lisp/systems
20     install -d ${pkgdir}/usr/share/licenses/${pkgname}
22     cd ${srcdir}/${pkgname}-${pkgver}
24     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${pkgname} \
25         *.lisp
26     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${pkgname} \
27         *.asd
28     install -m 644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}
30     cd ${pkgdir}/usr/share/common-lisp/systems
31     ln -s ../source/${pkgname}/${pkgname}.asd .
34 # vim:set ts=2 sw=4 et nospell: