2 _hkgname=test-framework-th
5 # PKGBUILD options/directives
6 pkgname=haskell-test-framework-th
9 pkgdesc="Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell."
10 url="http://github.com/finnsson/test-generator"
12 arch=('i686' 'x86_64')
14 depends=("ghc=7.0.3-2"
15 "haskell-haskell-src-exts=1.11.1-21"
16 "haskell-language-haskell-extract=0.2.1-2"
17 "haskell-regex-posix=0.94.4-2.1"
18 "haskell-test-framework=0.4.1.1-2")
20 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
21 install="${pkgname}.install"
22 sha256sums=("1c40ea53e8f4a6cd006ab003dacc48e2ffee21af85171548b7b1db5572dfee5b")
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}