5 # PKGBUILD options/directives
6 pkgname=haskell-path-pieces
9 pkgdesc="Components of paths."
10 url="http://github.com/snoyberg/path-pieces"
12 arch=('i686' 'x86_64')
14 depends=("ghc=7.0.3-2"
16 "haskell-text=0.11.0.5")
18 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
19 install="${pkgname}.install"
20 sha256sums=("6e4775b97b40c4b9121a7b92a8938e3fdea188973a5e7d6254ef0cff29275327")
24 cd ${srcdir}/${_hkgname}-${pkgver}
26 runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
27 --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
28 --libsubdir=\$compiler/site-local/\$pkgid
29 runhaskell Setup build
30 runhaskell Setup haddock
31 runhaskell Setup register --gen-script
32 runhaskell Setup unregister --gen-script
33 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
37 cd ${srcdir}/${_hkgname}-${pkgver}
38 install -D -m744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
39 install -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
40 install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
41 ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
42 runhaskell Setup copy --destdir=${pkgdir}
43 install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
44 rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}