5 # PKGBUILD options/directives
9 pkgdesc="Support for serialising Haskell to and from JSON"
10 url="http://hackage.haskell.org/package/${_hkgname}"
12 arch=('i686' 'x86_64')
14 depends=("ghc=7.0.3-2"
16 "haskell-array=0.3.0.2"
17 "haskell-bytestring=0.9.1.10"
18 "haskell-containers=0.4.0.0"
20 "haskell-parsec=3.1.1"
21 "haskell-pretty=1.0.1.2"
24 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
25 install="${pkgname}.install"
26 sha256sums=("010157c267e156489771a3a9466f9de74393d9bc82053c1463af8a55caaf5880")
30 cd ${srcdir}/${_hkgname}-${pkgver}
32 runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
33 --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
34 --libsubdir=\$compiler/site-local/\$pkgid
35 runhaskell Setup build
36 runhaskell Setup haddock
37 runhaskell Setup register --gen-script
38 runhaskell Setup unregister --gen-script
39 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
43 cd ${srcdir}/${_hkgname}-${pkgver}
44 install -D -m744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
45 install -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
46 install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
47 ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
48 runhaskell Setup copy --destdir=${pkgdir}
49 install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
50 rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}