[arch-commits] Commit in haskell-unexceptionalio/repos (2 files)

Felix Yan felixonmars at archlinux.org
Thu May 17 09:13:42 UTC 2018


    Date: Thursday, May 17, 2018 @ 09:13:41
  Author: felixonmars
Revision: 323559

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-unexceptionalio/repos/community-staging-x86_64/
  haskell-unexceptionalio/repos/community-staging-x86_64/PKGBUILD
    (from rev 323558, haskell-unexceptionalio/trunk/PKGBUILD)

----------+
 PKGBUILD |   39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

Copied: haskell-unexceptionalio/repos/community-staging-x86_64/PKGBUILD (from rev 323558, haskell-unexceptionalio/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2018-05-17 09:13:41 UTC (rev 323559)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=unexceptionalio
+pkgname=haskell-unexceptionalio
+pkgver=0.4.0
+pkgrel=2
+pkgdesc="IO without any non-error, synchronous exceptions"
+url="https://github.com/singpolyma/unexceptionalio"
+license=("custom")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('cbee14d9accdb9504cb745705e9c1e8d408c4a657e8bc678906b5c0efbc3efe0dcc740828324ffccff9c95046116c7d4724983a2c9bb57c1cb04ea576b634f5b')
+
+build() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    
+    runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+        --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+    runhaskell Setup build
+    runhaskell Setup register --gen-script
+    runhaskell Setup unregister --gen-script
+    sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+    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/register/${pkgname}.sh"
+    install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+    runhaskell Setup copy --destdir="${pkgdir}"
+    install -D -m644 "COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+    rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}



More information about the arch-commits mailing list