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>
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/"
16 install=cl-ppcre.install
17 source=('http://weitz.de/files/cl-ppcre.tar.gz' 'LICENSE')
18 md5sums=('bd5648fd3c8b6f89eea43f5b82b99aa1'
19 'c6aa01dce26b45aa916329701a448d11')
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: