updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / haskell-happs-state / PKGBUILD
blob356459c277556b5c02c5b1bbb67078082501ab72
1 # Maintainer: Arch Haskell Team <arch-haskell@haskell.org>
2 _hkgname=HAppS-State
3 pkgname=haskell-happs-state
4 pkgver=0.9.3
5 pkgrel=4
6 pkgdesc="Event-based distributed state."
7 url="http://hackage.haskell.org/package/${_hkgname}"
8 license=('custom:BSD3')
9 arch=('i686' 'x86_64')
10 makedepends=()
11 depends=('ghc' 'haskell-happs-data>=0.9.3' 'haskell-happs-util>=0.9.3' 'haskell-haxml<1.14' 'haskell-binary' 'haskell-bytestring=0.9.1.7' 'haskell-containers=0.3.0.0' 'haskell-directory=1.0.1.1' 'haskell-filepath=1.1.0.4' 'haskell-hslogger>=1.0.2' 'haskell-hspread>=0.3' 'haskell-mtl' 'haskell-network=2.2.1.7' 'haskell-old-locale=1.0.0.2' 'haskell-old-time=1.0.0.5' 'haskell-random=1.0.0.2' 'haskell-stm=2.1.2.1' 'haskell-syb=0.1.0.2' 'haskell-template-haskell=2.4.0.1' 'haskell-unix=2.4.0.2')
12 options=('strip')
13 source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
14 install=${pkgname}.install
15 build() {
16     cd ${srcdir}/${_hkgname}-${pkgver}
17     runhaskell Setup configure -O --enable-split-objs --enable-shared \
18        --prefix=/usr --docdir=/usr/share/doc/${pkgname} --libsubdir=\$compiler/site-local/\$pkgid
19     runhaskell Setup build
20     runhaskell Setup haddock
21     runhaskell Setup register   --gen-script
22     runhaskell Setup unregister --gen-script
23     sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
25 package() {
26     cd ${srcdir}/${_hkgname}-${pkgver}
27     install -D -m744 register.sh   ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
28     install    -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
29     install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
30     ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
31     runhaskell Setup copy --destdir=${pkgdir}
32     install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
33     rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
35 md5sums=('a5aa349e77b8a0a22210471b28982f03')