From 0a595245dd258cc0ad9a5de2b292cf1b1a94f51a Mon Sep 17 00:00:00 2001 From: root Date: Mon, 27 Jun 2011 23:06:15 +0000 Subject: Mon Jun 27 23:06:14 UTC 2011 --- community-testing/gtk2hs-glib/PKGBUILD | 41 +++++++++++++++++++++++ community-testing/gtk2hs-glib/gtk2hs-glib.install | 18 ++++++++++ 2 files changed, 59 insertions(+) create mode 100644 community-testing/gtk2hs-glib/PKGBUILD create mode 100644 community-testing/gtk2hs-glib/gtk2hs-glib.install (limited to 'community-testing/gtk2hs-glib') diff --git a/community-testing/gtk2hs-glib/PKGBUILD b/community-testing/gtk2hs-glib/PKGBUILD new file mode 100644 index 000000000..e15d65554 --- /dev/null +++ b/community-testing/gtk2hs-glib/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 50214 2011-06-26 20:15:38Z spupykin $ +# Maintainer: Sergej Pupykin + +_hkgname=glib +pkgname=gtk2hs-glib +pkgver=0.12.0 +pkgrel=3 +pkgdesc="Binding to the GLIB library for Gtk2Hs." +url="http://hackage.haskell.org/package/glib" +license=('LGPL2.1') +arch=('i686' 'x86_64') +depends=('ghc' 'glib2') +makedepends=('gtk2hs-buildtools=0.12.0') +options=('strip') +install=gtk2hs-glib.install +source=(http://hackage.haskell.org/packages/archive/glib/$pkgver/glib-$pkgver.tar.gz) +md5sums=('2f334374d14a2f3e221a2ebfce1f8817') + +build() { + cd ${srcdir}/${_hkgname}-$pkgver + runhaskell Setup configure -O -p --enable-split-objs --enable-shared \ + --prefix=/usr --docdir=/usr/share/doc/${pkgname} \ + --libsubdir=\$compiler/site-local/\$pkgid + runhaskell Setup build + runhaskell Setup haddock + runhaskell Setup register --gen-script + runhaskell Setup unregister --gen-script + sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { + _ghcver=`pacman -Q ghc | cut -f2 -d\ | cut -f1 -d-` + depends=("ghc=${_ghcver}" "glib2") + + cd ${srcdir}/${_hkgname}-${pkgver} + install -D -m744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh + install -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh + install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries + ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname} + runhaskell Setup copy --destdir=${pkgdir} +} diff --git a/community-testing/gtk2hs-glib/gtk2hs-glib.install b/community-testing/gtk2hs-glib/gtk2hs-glib.install new file mode 100644 index 000000000..24025f5d8 --- /dev/null +++ b/community-testing/gtk2hs-glib/gtk2hs-glib.install @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/gtk2hs-glib +post_install() { + ${HS_DIR}/register.sh + (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index) +} +pre_upgrade() { + ${HS_DIR}/unregister.sh +} +post_upgrade() { + ${HS_DIR}/register.sh + (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index) +} +pre_remove() { + ${HS_DIR}/unregister.sh +} +post_remove() { + (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index) +} -- cgit v1.2.3-54-g00ecf