Date: Thursday, June 15, 2017 @ 16:59:22 Author: felixonmars Revision: 237275
upgpkg: haskell-hspec-discover 2.4.3-2 rebuild with ghc,8.0.2 Modified: haskell-hspec-discover/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-15 16:57:58 UTC (rev 237274) +++ PKGBUILD 2017-06-15 16:59:22 UTC (rev 237275) @@ -4,12 +4,12 @@ _hkgname=hspec-discover pkgname=haskell-hspec-discover pkgver=2.4.3 -pkgrel=1 +pkgrel=2 pkgdesc="Automatically discover and run Hspec tests" url="http://hspec.github.io/" license=('MIT') 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=('ed4c8a6aeb53718eab6581abb49185e6f772bf4a89a129b2b81958e9fc0526eb0d8fc41ecab3992a09fcb57c75b4c80d69dac93cefad757a149115801966bdb0') @@ -16,7 +16,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 @@ -37,4 +37,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 }
