updated on Fri Jan 13 00:14:41 UTC 2012
[aur-mirror.git] / lisp-unit / PKGBUILD
blob21307d687665e4af97bdf4c1d21e099b905d1694
1 # Sam May <sam.m4y@gmail.com>
2 pkgname=lisp-unit
3 pkgver=1.0
4 pkgrel=1
5 pkgdesc="A simple-to-use unit testing library for Common Lisp"
6 license=('custom')
7 arch=('i686' 'x86_64')
8 install=('lisp-unit.install')
9 depends=('clisp' 'cl-asdf')
10 url="http://www.cs.northwestern.edu/academics/courses/325/readings/lisp-unit.html"
11 source=("http://www.geocities.com/reuben_cornel/lisp-unit_${pkgver}.tar.gz")
12 md5sums=('8a60c64e52c2811f9657c01f51431d3c')
14 _lispdir=$startdir/pkg/usr/share/common-lisp
15 build() {
16     install -d $_lispdir/source/lisp-unit
17     install -m 644 -t $_lispdir/source/lisp-unit/ \
18         $startdir/src/lisp-unit/lisp-unit.lisp \
19         $startdir/src/lisp-unit/lisp-unit.asd
21     install -d $_lispdir/systems/
22     pushd $_lispdir/systems
23     ln -s ../source/lisp-unit/lisp-unit.asd .
24     popd
26     install -D -m 644  $startdir/LICENSE \
27         $startdir/pkg/usr/share/licenses/$pkgname/LICENSE