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

Felix Yan felixonmars at archlinux.org
Wed Jun 9 23:54:44 UTC 2021


    Date: Wednesday, June 9, 2021 @ 23:54:44
  Author: felixonmars
Revision: 960803

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-zlib/repos/community-staging-x86_64/PKGBUILD (from rev 960802, haskell-zlib/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-06-09 23:54:44 UTC (rev 960803)
@@ -0,0 +1,43 @@
+# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
+# Maintainer: Colin Woodbury <colingw at gmail.com>
+
+pkgname=haskell-zlib
+pkgver=0.6.2.3
+pkgrel=26
+pkgdesc="Compression and decompression in the gzip and zlib formats"
+url="https://hackage.haskell.org/package/zlib"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'zlib')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+             'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/zlib/${pkgver}/zlib-${pkgver}.tar.gz)
+sha512sums=('535fc711af639967c032791c6a0c09680ac186c706e02a28cfabd9b2dcddc84a6ee5f6007e2ed67c1dc19dd6d561cb821d8840dba7386b63cc002418c4d5040a')
+
+build() {
+    cd zlib-$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 \
+            -f-non-blocking-ffi -fpkg-config -f-bundled-c-zlib
+    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 zlib-$pkgver
+    runhaskell Setup test --show-details=direct
+}
+
+package() {
+    cd zlib-$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