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

Felix Yan felixonmars at archlinux.org
Thu May 17 07:29:54 UTC 2018


    Date: Thursday, May 17, 2018 @ 07:29:52
  Author: felixonmars
Revision: 323387

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-type-hint/repos/community-staging-x86_64/
  haskell-type-hint/repos/community-staging-x86_64/PKGBUILD
    (from rev 323386, haskell-type-hint/trunk/PKGBUILD)

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

Copied: haskell-type-hint/repos/community-staging-x86_64/PKGBUILD (from rev 323386, haskell-type-hint/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2018-05-17 07:29:52 UTC (rev 323387)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=type-hint
+pkgname=haskell-type-hint
+pkgver=0.1
+pkgrel=6
+pkgdesc="Guide type inference with proxy values"
+url="https://github.com/mvv/type-hint"
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-tagged')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('4f84031298612bfe5f64eb26ce876078bc54b5f8ab672c7760483bcec338455a1e7ba63d15b1fe771344a1afe65a28957bb10f6329441c609ce0af5f110b66bc')
+
+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 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+    rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}



More information about the arch-commits mailing list