Date: Thursday, June 15, 2017 @ 15:42:21 Author: felixonmars Revision: 237192
upgpkg: haskell-pretty-show 1.6.13-2 rebuild with ghc,8.0.2 Modified: haskell-pretty-show/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-15 15:40:35 UTC (rev 237191) +++ PKGBUILD 2017-06-15 15:42:21 UTC (rev 237192) @@ -4,12 +4,12 @@ _hkgname=pretty-show pkgname=haskell-pretty-show pkgver=1.6.13 -pkgrel=1 +pkgrel=2 pkgdesc='Tools for working with derived `Show` instances and generic inspection of values.' url="http://wiki.github.com/yav/pretty-show" license=('MIT') arch=('i686' 'x86_64') -depends=('ghc=8.0.1' 'haskell-lexer') +depends=('ghc' 'haskell-lexer') makedepends=('happy') source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") sha512sums=('7917e5b34e3eefdff3b72d37cedd9f692be1176febe1087e713be9e6c00baf5ffbdd3a7ecca685936ddf73a6765f8145d94ac5a9c026fc8de58794e0a06a184e') @@ -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 }
