Date: Thursday, June 15, 2017 @ 15:27:17 Author: felixonmars Revision: 237182
upgpkg: haskell-abstract-par 0.3.3-3 rebuild with ghc,8.0.2 Modified: haskell-abstract-par/trunk/PKGBUILD ----------+ PKGBUILD | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-15 15:25:52 UTC (rev 237181) +++ PKGBUILD 2017-06-15 15:27:17 UTC (rev 237182) @@ -3,15 +3,14 @@ # Contributor: Arch Haskell Team <[email protected]> _hkgname=abstract-par -_licensefile=LICENSE pkgname=haskell-abstract-par pkgver=0.3.3 -pkgrel=2 +pkgrel=3 pkgdesc="Type classes generalizing the functionality of the \'monad-par\' library." url="https://github.com/simonmar/monad-par" 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") sha256sums=('248a8739bd902462cb16755b690b55660e196e58cc7e6ef8157a72c2a3d5d860') @@ -18,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 @@ -39,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 }
