5 # PKGBUILD options/directives
6 pkgname=haskell-xmlhtml
9 pkgdesc="XML parser and renderer with HTML 5 quirks mode"
10 url="http://hackage.haskell.org/package/${_hkgname}"
12 arch=('i686' 'x86_64')
14 depends=("ghc=7.0.3-2"
16 "haskell-blaze-builder=0.3.0.1"
17 "haskell-blaze-html=0.4.2.0"
18 "haskell-bytestring=0.9.1.10"
19 "haskell-containers=0.4.0.0"
20 "haskell-parsec=3.1.1"
21 "haskell-text=0.11.0.5")
23 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
24 install="${pkgname}.install"
25 sha256sums=("35a83ba09a69b429583ea4e7c583b6e4292cf85de9e5d4e6588735dff0c7a4c4")
29 cd ${srcdir}/${_hkgname}-${pkgver}
31 runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
32 --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
33 --libsubdir=\$compiler/site-local/\$pkgid
34 runhaskell Setup build
35 runhaskell Setup haddock
36 runhaskell Setup register --gen-script
37 runhaskell Setup unregister --gen-script
38 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
42 cd ${srcdir}/${_hkgname}-${pkgver}
43 install -D -m744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
44 install -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
45 install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
46 ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
47 runhaskell Setup copy --destdir=${pkgdir}
48 install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
49 rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}