[arch-commits] Commit in (5 files)

Jelle van der Waa jelle at nymeria.archlinux.org
Sun Mar 10 19:19:57 UTC 2013


    Date: Sunday, March 10, 2013 @ 20:19:56
  Author: jelle
Revision: 85976

new dep of haskell-x11

Added:
  haskell-dlist/
  haskell-dlist/repos/
  haskell-dlist/trunk/
  haskell-dlist/trunk/PKGBUILD
  haskell-dlist/trunk/haskell-dlist.install

-----------------------+
 PKGBUILD              |   42 ++++++++++++++++++++++++++++++++++++++++++
 haskell-dlist.install |   26 ++++++++++++++++++++++++++
 2 files changed, 68 insertions(+)

Added: haskell-dlist/trunk/PKGBUILD
===================================================================
--- haskell-dlist/trunk/PKGBUILD	                        (rev 0)
+++ haskell-dlist/trunk/PKGBUILD	2013-03-10 19:19:56 UTC (rev 85976)
@@ -0,0 +1,42 @@
+# Contributor: Don Stewart <dons at galois.com>
+# Contributor: Lex Black <autumn-wind at web dot de>
+
+pkgname=haskell-dlist
+pkgver=0.5
+_hkgname=dlist
+_licensefile=LICENSE
+pkgrel=1
+pkgdesc="Differences lists"
+url="http://code.haskell.org/~dons/code/dlist/"
+license=("BSD3")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('ghc')
+options=('strip')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha256sums=('4780e5409eff55bbfdd7470ef802a087a04048c9cd5efe0482c82878292f19ea')
+install="${pkgname}.install"
+
+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() {
+    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}
+    install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+    rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}
+}


Property changes on: haskell-dlist/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-dlist/trunk/haskell-dlist.install
===================================================================
--- haskell-dlist/trunk/haskell-dlist.install	                        (rev 0)
+++ haskell-dlist/trunk/haskell-dlist.install	2013-03-10 19:19:56 UTC (rev 85976)
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-dlist
+HS_DIR=/usr/share/haskell/${pkgname}
+
+# functions
+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)
+}




More information about the arch-commits mailing list