updated on Wed Jan 11 12:00:27 UTC 2012
[aur-mirror.git] / cl-md5 / PKGBUILD
blobf46ec914f52679542cf7b20d368ba086d688d33a
1 # Maintainer:   mrshpot <mrshpot at gmail dot com>
2 # Contributor:  veox <box 55 [shift-two] mail [dot] ru>
4 pkgname=cl-md5
5 _clname=md5
6 pkgver=1.8.5
7 pkgrel=1
8 pkgdesc="MD5 cryptographic protocol implementation by Pierre R. Mai for Common Lisp"
9 arch=('i686' 'x86_64')
10 url="http://www.pmsf.de/resources/lisp/MD5.html"
11 license=('Public Domain')
12 # TODO: add 'cl-asdf*' when sbcl provides it
13 depends=('common-lisp')
14 install=cl-md5.install
15 source=("http://ftp.de.debian.org/debian/pool/main/c/cl-md5/cl-md5_${pkgver}.orig.tar.gz")
16 md5sums=('f3e0090596865bdcb861a97f94c05e10')
18 build() {
19     install -d ${pkgdir}/usr/share/common-lisp/source/${_clname}
20     install -d ${pkgdir}/usr/share/common-lisp/systems
21     install -d ${pkgdir}/usr/share/licenses/${pkgname}
23     cd ${srcdir}/${pkgname}-${pkgver}
24         pwd
25         
26     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname} \
27         *.lisp
28     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname} \
29         *.asd
30     # install -m 644 ${srcdir}/LICENSE \
31     #     ${pkgdir}/usr/share/licenses/${pkgname}
33     cd ${pkgdir}/usr/share/common-lisp/systems
34     ln -s ../source/${_clname}/${_clname}.asd .
37 # vim:set ts=2 sw=4 et nospell: