Date: Thursday, June 15, 2017 @ 20:32:54 Author: felixonmars Revision: 237439
upgpkg: haskell-contravariant-extras 0.3.3.1-7 rebuild with ghc,8.0.2 Modified: haskell-contravariant-extras/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-15 20:31:01 UTC (rev 237438) +++ PKGBUILD 2017-06-15 20:32:54 UTC (rev 237439) @@ -5,12 +5,12 @@ _hkgname=contravariant-extras pkgname=haskell-contravariant-extras pkgver=0.3.3.1 -pkgrel=6 +pkgrel=7 pkgdesc="Extras for the \"contravariant\" package" url="https://github.com/nikita-volkov/contravariant-extras" license=("MIT") arch=('i686' 'x86_64') -depends=("ghc=8.0.1" "haskell-base-prelude" "haskell-contravariant" "haskell-tuple-th") +depends=("ghc" "haskell-base-prelude" "haskell-contravariant" "haskell-tuple-th") source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") sha256sums=('f35d9df4d1c0fa767afca6500c6ab598f052128abc513259930ef5b6bc7c79d5') @@ -17,7 +17,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 @@ -38,4 +38,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 }