5 # PKGBUILD options/directives
6 pkgname=haskell-happstack
9 pkgdesc="The haskell application server stack + code generation"
10 url="http://happstack.com"
12 arch=('i686' 'x86_64')
14 depends=("ghc=7.0.3-2"
15 "haskell-happstack-data=6.0.0-20"
16 "haskell-happstack-ixset=6.0.1-24"
17 "haskell-happstack-server=6.2.5-2"
18 "haskell-happstack-state=6.1.2-2"
19 "haskell-happstack-util=6.0.2-1"
20 "haskell-syb=0.3-2.1")
22 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
23 install="${pkgname}.install"
24 sha256sums=("b9793486a092745e03d9061f077ee77c8509764ffc9e73278ce91e414e72ff0e")
28 cd ${srcdir}/${_hkgname}-${pkgver}
30 runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
31 --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
32 --libsubdir=\$compiler/site-local/\$pkgid
33 runhaskell Setup build
34 runhaskell Setup haddock
35 runhaskell Setup register --gen-script
36 runhaskell Setup unregister --gen-script
37 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
41 cd ${srcdir}/${_hkgname}-${pkgver}
42 install -D -m744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
43 install -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
44 install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
45 ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
46 runhaskell Setup copy --destdir=${pkgdir}
47 install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
48 rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}