updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / haskell-dbus-core / PKGBUILD
blobd9c054baf9795ce2e771d99a0792e449742e084f
1 # Maintainer: Arch Haskell Team <arch-haskell@haskell.org>
2 _hkgname=dbus-core
3 pkgname=haskell-dbus-core
4 pkgver=0.8.5.4
5 pkgrel=4
6 pkgdesc="Low-level D-Bus protocol implementation"
7 url="http://hackage.haskell.org/package/${_hkgname}"
8 license=('GPL-3')
9 arch=('i686' 'x86_64')
10 makedepends=()
11 depends=('ghc' 'haskell-binary<0.6' 'haskell-bytestring=0.9.1.7' 'haskell-containers=0.3.0.0' 'haskell-data-binary-ieee754<0.5' 'haskell-libxml-sax<0.7' 'haskell-network=2.2.1.7' 'haskell-parsec=2.1.0.1' 'haskell-text<0.12' 'haskell-unix=2.4.0.2' 'haskell-xml-types<0.2')
12 options=('strip')
13 source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
14 install=${pkgname}.install
15 md5sums=('a6ba08b42b2cf021f2d2f8cf9c86cb18')
16 build() {
17     cd ${srcdir}/${_hkgname}-${pkgver}
18     runhaskell Setup configure -O --enable-split-objs --enable-shared \
19        --prefix=/usr --docdir=/usr/share/doc/${pkgname} --libsubdir=\$compiler/site-local/\$pkgid
20     runhaskell Setup build
21     runhaskell Setup haddock
22     runhaskell Setup register   --gen-script
23     runhaskell Setup unregister --gen-script
24     sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
26 package() {
27     cd ${srcdir}/${_hkgname}-${pkgver}
28     install -D -m744 register.sh   ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
29     install    -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
30     install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
31     ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
32     runhaskell Setup copy --destdir=${pkgdir}