updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / haskell-polyparse / PKGBUILD
blob4cdea8ea0f5e81345250c4c7d17362526be4bd39
1 # custom variables
2 _hkgname=polyparse
3 _licensefile=COPYRIGHT
5 # PKGBUILD options/directives
6 pkgname=haskell-polyparse
7 pkgver=1.7
8 pkgrel=1
9 pkgdesc="A variety of alternative parser combinator libraries."
10 url="http://code.haskell.org/~malcolm/polyparse/"
11 license=("LGPL")
12 arch=('i686' 'x86_64')
13 makedepends=()
14 depends=("ghc=7.0.3-2"
15          "sh"
16          "haskell-bytestring=0.9.1.10"
17          "haskell-text=0.11.0.5")
18 options=('strip')
19 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
20 install="${pkgname}.install"
21 sha256sums=("de8ed0ce54f1f81bb0783dd97b7b22eca28df4a238684a26b37c5af2d17a364b")
23 # PKGBUILD functions
24 build() {
25     cd ${srcdir}/${_hkgname}-${pkgver}
26     
27     runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
28         --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
29         --libsubdir=\$compiler/site-local/\$pkgid
30     runhaskell Setup build
31     runhaskell Setup haddock
32     runhaskell Setup register --gen-script
33     runhaskell Setup unregister --gen-script
34     sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
37 package() {
38     cd ${srcdir}/${_hkgname}-${pkgver}
39     install -D -m744 register.sh   ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
40     install    -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
41     install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
42     ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
43     runhaskell Setup copy --destdir=${pkgdir}
44     install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
45     rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}