2 _hkgname=data-accessor-template
5 # PKGBUILD options/directives
6 pkgname=haskell-data-accessor-template
9 pkgdesc="Utilities for accessing and manipulating fields of records"
10 url="http://www.haskell.org/haskellwiki/Record_access"
12 arch=('i686' 'x86_64')
16 "haskell-data-accessor"
17 "haskell-template-haskell"
20 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
21 install="${pkgname}.install"
22 sha256sums=("f38f01529041553478a674517627f771c416897cbee930d40502bf3837e1a02f")
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}