[arch-commits] Commit in haskell-zlib/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Wed Dec 23 22:52:17 UTC 2020
Date: Wednesday, December 23, 2020 @ 22:52:17
Author: felixonmars
Revision: 785612
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 785611, haskell-zlib/trunk/PKGBUILD)
----------+
PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
Copied: haskell-zlib/repos/community-staging-x86_64/PKGBUILD (from rev 785611, haskell-zlib/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-12-23 22:52:17 UTC (rev 785612)
@@ -0,0 +1,37 @@
+# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
+# Maintainer: Colin Woodbury <colingw at gmail.com>
+
+pkgname=haskell-zlib
+pkgver=0.6.2.2
+pkgrel=4
+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')
+source=(https://hackage.haskell.org/packages/archive/zlib/${pkgver}/zlib-${pkgver}.tar.gz)
+sha512sums=('3619b5c32e16a4fb9a68a9e6ea0beb9b14d06a4b5825811f429ee232a0ea13035335cd86c0301f8afcff126a473b86698fd310f9608e0e0ecb849714842be1ea')
+
+build() {
+ cd "$srcdir"/zlib-${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 \
+ -f-use-bytestring-builder -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
+}
+
+package() {
+ cd "${srcdir}/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