Date: Thursday, June 15, 2017 @ 02:45:48 Author: felixonmars Revision: 236898
upgpkg: haskell-pem 0.2.2-4 rebuild with ghc,8.0.2 Modified: haskell-pem/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-15 02:44:28 UTC (rev 236897) +++ PKGBUILD 2017-06-15 02:45:48 UTC (rev 236898) @@ -6,18 +6,18 @@ _hkgname=pem pkgname=haskell-pem pkgver=0.2.2 -pkgrel=3 +pkgrel=4 pkgdesc="Privacy Enhanced Mail (PEM) format reader and writer." url="https://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') arch=('i686' 'x86_64') -depends=('ghc=8.0.1' 'haskell-base64-bytestring' 'haskell-mtl') +depends=('ghc' 'haskell-base64-bytestring' 'haskell-mtl') source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) md5sums=('66489241d291cc8e402263c9f8ede91f') 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 }
