Date: Wednesday, June 14, 2017 @ 19:18:03 Author: felixonmars Revision: 236808
upgpkg: haskell-foundation 0.0.10-2 rebuild with ghc,8.0.2 Modified: haskell-foundation/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-14 19:13:41 UTC (rev 236807) +++ PKGBUILD 2017-06-14 19:18:03 UTC (rev 236808) @@ -5,12 +5,12 @@ _hkgname=foundation pkgname=haskell-foundation pkgver=0.0.10 -pkgrel=1 +pkgrel=2 pkgdesc="Alternative prelude with batteries and no dependencies" url="https://github.com/haskell-foundation/foundation" license=('custom:BSD3') arch=('i686' 'x86_64') -depends=('ghc=8.0.1') +depends=('ghc') source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") sha512sums=('78c15dbda345b0c21ba2e0e22155c143047630086d7b4ea3e0240011a24f8b7e0028ff0d5ca7edb5f697571c330cf4bff01c4d0cc052590389d3067e067359b1') @@ -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 \ -f-experimental -f-minimal-deps -f-doctest -f-bounds-check @@ -39,4 +39,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 }
