5 # PKGBUILD options/directives
6 pkgname=haskell-blaze-html
10 url="http://jaspervdj.be/blaze"
12 arch=('i686' 'x86_64')
14 depends=("ghc=7.0.3-2"
16 "haskell-blaze-builder=0.3.0.1"
17 "haskell-bytestring=0.9.1.10"
18 "haskell-text=0.11.0.5")
20 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
21 install="${pkgname}.install"
22 sha256sums=("62514049ce630f77b3da2278715edb52a941172a7e9ebd151d274b837f4d1e25")
26 cd ${srcdir}/${_hkgname}-${pkgver}
28 runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
29 --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
30 --libsubdir=\$compiler/site-local/\$pkgid
31 runhaskell Setup build
32 runhaskell Setup haddock
33 runhaskell Setup register --gen-script
34 runhaskell Setup unregister --gen-script
35 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
39 cd ${srcdir}/${_hkgname}-${pkgver}
40 install -D -m744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
41 install -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
42 install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
43 ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
44 runhaskell Setup copy --destdir=${pkgdir}
45 install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
46 rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}