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

Felix Yan felixonmars at archlinux.org
Thu Jun 17 16:24:20 UTC 2021


    Date: Thursday, June 17, 2021 @ 16:24:20
  Author: felixonmars
Revision: 964639

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 964638, haskell-broadcast-chan/trunk/PKGBUILD)

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

Copied: haskell-broadcast-chan/repos/community-staging-x86_64/PKGBUILD (from rev 964638, haskell-broadcast-chan/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-06-17 16:24:20 UTC (rev 964639)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=broadcast-chan
+pkgname=haskell-broadcast-chan
+pkgver=0.2.1.1
+pkgrel=7
+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' 'uusi')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0484a81b5bfc53ad9513f97bf0c0fe6e1b894eac19dcd1cdf7bbd67930ac21dd702b70a78460bf3518ebadfb27cf03cd0d57200ef868803dd69d26f0fd880eb7')
+
+prepare() {
+    cd $_hkgname-$pkgver
+    uusi -u base $_hkgname.cabal
+}
+
+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 --show-details=direct
+}
+
+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