2 _hkgname=shakespeare-css
5 # PKGBUILD options/directives
6 pkgname=haskell-shakespeare-css
9 pkgdesc="Stick your haskell variables into css at compile time."
10 url="http://www.yesodweb.com/book/templates"
12 arch=('i686' 'x86_64')
14 depends=("ghc=7.0.3-2"
15 "haskell-parsec=3.1.1-2.1"
16 "haskell-shakespeare=0.10.2-1"
17 "haskell-text=0.11.0.5-2.1")
19 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
20 install="${pkgname}.install"
21 sha256sums=("64d1a60af9e0a6a236f5d5797e83eb04c403f648fc88e29f97470bcd9d9d2ba0")
25 cd ${srcdir}/${_hkgname}-${pkgver}
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
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}