updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / cl-rfc2388 / PKGBUILD
blob11e79a4943109f4e96076ea83c3e25848ccffefd
1 # Maintainer:  veox <box 55 [shift-two] mail [dot] ru>
3 pkgname=cl-rfc2388
4 _clname=rfc2388
5 pkgver=0.1  # true version unspecified in source!
6 pkgrel=1
7 pkgdesc="HTTP-POSTed form data processing for Common Lisp"
8 arch=('i686' 'x86_64')
9 url="http://www.common-lisp.net/project/rfc2388/"
10 license=('BSD')
11 # TODO: add 'cl-asdf*' when sbcl provides it
12 depends=('common-lisp')
13 install=cl-rfc2388.install
14 source=('http://www.common-lisp.net/project/rfc2388/rfc2388_latest.tar.gz' 'LICENSE' 'doc.html')
15 md5sums=('0e1e163bfab8acd315ccb89d96196b3c' 'ae99d531e59e1722ec50064ada9f12e3'\
16          '6add57235848f9235692fe07f7875735')
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}
22     install -d ${pkgdir}/usr/share/doc/${pkgname}
24     cd ${srcdir}/${_clname}
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}
32     install -m 644 ${srcdir}/doc.html \
33         ${pkgdir}/usr/share/doc/${pkgname}
35     cd ${pkgdir}/usr/share/common-lisp/systems
36     ln -s ../source/${_clname}/${_clname}.asd .
39 # vim:set ts=2 sw=4 et nospell: