updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / cl-ppcre-sbcl / PKGBUILD
blob2f5ad0f6d10e70d117121698eaced695c464d4ed
1 # Maintainer: mrshpot <mrshpot at gmail dot com>
2 # Contributor: veox <cy at wre dot ath dot cx>
3 # Contributor: joyfulgirl <joyfulgirl (at) archlinux.us>
4 # Contributor: Jonathan Friedman <jonf@gojon.com>
5 pkgname=cl-ppcre-sbcl
6 pkgorigname=cl-ppcre
7 pkgver=2.0.3
8 pkgrel=3
9 pkgdesc="Perl-compatible, portable regexp library for Common Lisp. SBCL build"
10 arch=('i686' 'x86_64')
11 url="http://www.weitz.de/cl-ppcre/"
12 license=('BSD')
14 depends=('sbcl')
16 install=cl-ppcre.install
17 source=('http://weitz.de/files/cl-ppcre.tar.gz' 'LICENSE')
18 md5sums=('bd5648fd3c8b6f89eea43f5b82b99aa1'
19          'c6aa01dce26b45aa916329701a448d11')
21 build() {
22     install -d ${pkgdir}/usr/share/common-lisp/source/${pkgorigname}
23     install -d ${pkgdir}/usr/share/common-lisp/systems
24     install -d ${pkgdir}/usr/share/licenses/${pkgorigname}
26     cd ${srcdir}/${pkgorigname}-${pkgver}
28     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${pkgorigname} \
29         ${srcdir}/${pkgorigname}-${pkgver}/*.lisp
30     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${pkgorigname} \
31         ${srcdir}/${pkgorigname}-${pkgver}/*.asd
32     install -m 644 ${srcdir}/LICENSE \
33         ${pkgdir}/usr/share/licenses/${pkgorigname}
35     cd ${pkgdir}/usr/share/common-lisp/systems
36     ln -s ../source/${pkgorigname}/${pkgorigname}.asd .
37     ln -s ../source/${pkgorigname}/${pkgorigname}-unicode.asd .
40 # vim:set ts=2 sw=4 et nospell: