updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / cl-bordeaux-threads / PKGBUILD
blobddaad07705e6bab88f868b4f7cd9612a64fbb74e
1 # Maintainer:  veox <box 55 [shift-two] mail [dot] ru>
3 pkgname=cl-bordeaux-threads
4 _clname=bordeaux-threads
5 pkgver=0.7.0
6 pkgrel=1
7 pkgdesc="Virtual bivalent stream implementation for Common Lisp"
8 arch=('i686' 'x86_64')
9 url="http://common-lisp.net/project/bordeaux-threads/"
10 license=('BSD')
11 depends=('common-lisp' 'cl-lift')
12 install=cl-bordeaux-threads.install
13 source=("${url}/releases/${_clname}-${pkgver}.tar.gz" 'LICENSE')
14 md5sums=('0584f443f45b6e3be5e0493bb19dbea5' 'dd05ecb55a4617deda756e98ab561c66')
16 build() {
17     install -d ${pkgdir}/usr/share/common-lisp/source/${_clname}
18     install -d ${pkgdir}/usr/share/common-lisp/source/${_clname}/src
19     install -d ${pkgdir}/usr/share/common-lisp/source/${_clname}/test
20     install -d ${pkgdir}/usr/share/common-lisp/systems
21     install -d ${pkgdir}/usr/share/licenses/${pkgname}
23     cd ${srcdir}/${_clname}-${pkgver}
25     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname}/src \
26       src/*.lisp
27     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname}/test \
28       test/*.lisp
29     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname} \
30       *.asd
31     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${_clname} \
32       version.lisp-expr
33     install -m 644 LICENSE ${pkgdir}/usr/share/licenses/${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: