Date: Thursday, June 15, 2017 @ 16:11:48 Author: felixonmars Revision: 237216
upgpkg: haskell-adjunctions 4.3-32 rebuild with ghc,8.0.2 Modified: haskell-adjunctions/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-15 16:10:08 UTC (rev 237215) +++ PKGBUILD 2017-06-15 16:11:48 UTC (rev 237216) @@ -5,12 +5,12 @@ _hkgname=adjunctions pkgname=haskell-adjunctions pkgver=4.3 -pkgrel=31 +pkgrel=32 pkgdesc="Adjunctions and representable functors" url="http://github.com/ekmett/adjunctions/" license=("custom:BSD3") arch=('i686' 'x86_64') -depends=("ghc=8.0.1" "haskell-comonad" "haskell-contravariant" "haskell-distributive" +depends=("ghc" "haskell-comonad" "haskell-contravariant" "haskell-distributive" "haskell-free" "haskell-mtl" "haskell-profunctors" "haskell-semigroupoids" "haskell-semigroups" "haskell-tagged" "haskell-transformers-compat" "haskell-void") @@ -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 }
