Date: Friday, June 16, 2017 @ 06:39:43 Author: felixonmars Revision: 237497
upgpkg: haskell-postgresql-binary 0.12.1-19 rebuild with ghc,8.0.2 Modified: haskell-postgresql-binary/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-16 06:37:21 UTC (rev 237496) +++ PKGBUILD 2017-06-16 06:39:43 UTC (rev 237497) @@ -5,12 +5,12 @@ _hkgname=postgresql-binary pkgname=haskell-postgresql-binary pkgver=0.12.1 -pkgrel=18 +pkgrel=19 pkgdesc="Encoders and decoders for the PostgreSQL's binary format" url="https://github.com/nikita-volkov/postgresql-binary" license=("MIT") arch=('i686' 'x86_64') -depends=("ghc=8.0.1" "haskell-aeson" "haskell-base-prelude" "haskell-binary-parser" +depends=("ghc" "haskell-aeson" "haskell-base-prelude" "haskell-binary-parser" "haskell-bytestring-strict-builder" "haskell-loch-th" "haskell-network-ip" "haskell-placeholders" "haskell-scientific" "haskell-text" "haskell-unordered-containers" "haskell-uuid" "haskell-vector") @@ -20,7 +20,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 runhaskell Setup build @@ -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 }
