[arch-commits] Commit in haskell-zlib/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sun Nov 26 17:50:34 UTC 2017
Date: Sunday, November 26, 2017 @ 17:50:33
Author: felixonmars
Revision: 268940
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 268939, haskell-zlib/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: haskell-zlib/repos/community-staging-x86_64/PKGBUILD (from rev 268939, haskell-zlib/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2017-11-26 17:50:33 UTC (rev 268940)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
+# Maintainer: Colin Woodbury <colingw at gmail.com>
+
+pkgname=haskell-zlib
+pkgver=0.6.1.2
+pkgrel=5
+pkgdesc="Compression and decompression in the gzip and zlib formats"
+url="https://hackage.haskell.org/package/zlib"
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'zlib')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/zlib/${pkgver}/zlib-${pkgver}.tar.gz)
+sha512sums=('0034eb1297eaf20ab64e5cbfc835cee1985d34bc248325bf57f7bf5cdf2918ab72f339fe5b8b3f5f16dee862f190e0c71612960b9021cf2ca70c951788b73fc1')
+
+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
+ 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}/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