updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / haskell-test-framework-th / PKGBUILD
blobebee57d4e5ab1463db1854d63d1d1e07873de043
1 # custom variables
2 _hkgname=test-framework-th
3 _licensefile=BSD3.txt
5 # PKGBUILD options/directives
6 pkgname=haskell-test-framework-th
7 pkgver=0.2.2
8 pkgrel=3
9 pkgdesc="Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell."
10 url="http://github.com/finnsson/test-generator"
11 license=("BSD3")
12 arch=('i686' 'x86_64')
13 makedepends=()
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")
19 options=('strip')
20 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
21 install="${pkgname}.install"
22 sha256sums=("1c40ea53e8f4a6cd006ab003dacc48e2ffee21af85171548b7b1db5572dfee5b")
24 # PKGBUILD functions
25 build() {
26     cd ${srcdir}/${_hkgname}-${pkgver}
27     
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
38 package() {
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}