updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / cl-ppcre / PKGBUILD
blob68acff9346e7d6429fd7166e0294dda5dd9d1f14
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
6 pkgver=2.0.3
7 pkgrel=2
8 pkgdesc="Perl-compatible, portable regexp library for Common Lisp"
9 arch=('i686' 'x86_64')
10 url="http://www.weitz.de/cl-ppcre/"
11 license=('BSD')
13 depends=('common-lisp' 'cl-asdf')
15 install=cl-ppcre.install
16 source=('http://weitz.de/files/cl-ppcre.tar.gz' 'LICENSE')
17 md5sums=('bd5648fd3c8b6f89eea43f5b82b99aa1'
18          'c6aa01dce26b45aa916329701a448d11')
20 build() {
21     install -d ${pkgdir}/usr/share/common-lisp/source/${pkgname}
22     install -d ${pkgdir}/usr/share/common-lisp/systems
23     install -d ${pkgdir}/usr/share/licenses/${pkgname}
25     cd ${srcdir}/${pkgname}-${pkgver}
27     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${pkgname} \
28         ${srcdir}/${pkgname}-${pkgver}/*.lisp
29     install -m 644 -t ${pkgdir}/usr/share/common-lisp/source/${pkgname} \
30         ${srcdir}/${pkgname}-${pkgver}/*.asd
31     install -m 644 ${srcdir}/LICENSE \
32         ${pkgdir}/usr/share/licenses/${pkgname}
34     cd ${pkgdir}/usr/share/common-lisp/systems
35     ln -s ../source/${pkgname}/${pkgname}.asd .
36     ln -s ../source/${pkgname}/${pkgname}-unicode.asd .
39 # vim:set ts=2 sw=4 et nospell: