2 _hkgname=bytestring-trie
5 # PKGBUILD options/directives
6 pkgname=haskell-bytestring-trie
9 pkgdesc="An efficient finite map from (byte)strings to values."
10 url="http://code.haskell.org/~wren/"
12 arch=('i686' 'x86_64')
14 depends=("ghc=7.0.3-2"
15 "haskell-binary=0.5.0.2-8")
17 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
18 install="${pkgname}.install"
19 sha256sums=("ea9d8265616549f5c363eb5d6563ab34aa4641bff96b440ce33a94d4dcd164fd")
23 cd ${srcdir}/${_hkgname}-${pkgver}
25 runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
26 --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
27 --libsubdir=\$compiler/site-local/\$pkgid
28 runhaskell Setup build
29 runhaskell Setup haddock
30 runhaskell Setup register --gen-script
31 runhaskell Setup unregister --gen-script
32 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
36 cd ${srcdir}/${_hkgname}-${pkgver}
37 install -D -m744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
38 install -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
39 install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
40 ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
41 runhaskell Setup copy --destdir=${pkgdir}
42 install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
43 rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}