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

Felix Yan felixonmars at archlinux.org
Thu Dec 24 13:07:42 UTC 2020


    Date: Thursday, December 24, 2020 @ 13:07:42
  Author: felixonmars
Revision: 787213

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-broadcast-chan/repos/community-staging-x86_64/
  haskell-broadcast-chan/repos/community-staging-x86_64/PKGBUILD
    (from rev 787212, haskell-broadcast-chan/trunk/PKGBUILD)

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

Copied: haskell-broadcast-chan/repos/community-staging-x86_64/PKGBUILD (from rev 787212, haskell-broadcast-chan/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-12-24 13:07:42 UTC (rev 787213)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=broadcast-chan
+pkgname=haskell-broadcast-chan
+pkgver=0.2.1.1
+pkgrel=4
+pkgdesc="Closable, fair, single-wakeup channel type that avoids 0 reader space leaks"
+url="https://github.com/merijn/broadcast-chan"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-unliftio-core')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0484a81b5bfc53ad9513f97bf0c0fe6e1b894eac19dcd1cdf7bbd67930ac21dd702b70a78460bf3518ebadfb27cf03cd0d57200ef868803dd69d26f0fd880eb7')
+
+build() {
+    cd $_hkgname-$pkgver    
+    
+    runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+        --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+        --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+    runhaskell Setup build $MAKEFLAGS
+    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
+}
+
+check() {
+    cd $_hkgname-$pkgver
+    runhaskell Setup test
+}
+
+package() {
+    cd $_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