Date: Thursday, June 15, 2017 @ 06:23:13 Author: felixonmars Revision: 237079
upgpkg: haskell-tls 1.3.10-14 rebuild with ghc,8.0.2 Modified: haskell-tls/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-15 06:20:11 UTC (rev 237078) +++ PKGBUILD 2017-06-15 06:23:13 UTC (rev 237079) @@ -5,12 +5,12 @@ _hkgname=tls pkgname=haskell-tls pkgver=1.3.10 -pkgrel=13 +pkgrel=14 pkgdesc="TLS/SSL protocol native implementation (Server and Client)" url="http://github.com/vincenthz/hs-tls" license=("custom:BSD3") arch=('i686' 'x86_64') -depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" "haskell-async" "haskell-cereal" +depends=("ghc" "haskell-asn1-encoding" "haskell-asn1-types" "haskell-async" "haskell-cereal" "haskell-cryptonite" "haskell-data-default-class" "haskell-memory" "haskell-mtl" "haskell-network" "haskell-x509" "haskell-x509-store" "haskell-x509-validation") source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") @@ -19,7 +19,7 @@ build() { cd "${srcdir}/${_hkgname}-${pkgver}" - runhaskell Setup configure -O --enable-library-profiling --enable-shared \ + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \ --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ --libsubdir=\$compiler/site-local/\$pkgid \ -f-hans -fnetwork -fcompat @@ -41,4 +41,7 @@ runhaskell Setup copy --destdir="${pkgdir}" install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" + + # Remove static libs + find "$pkgdir"/usr/lib -name "*.a" -delete }
