Date: Thursday, June 15, 2017 @ 02:31:40 Author: felixonmars Revision: 236884
upgpkg: haskell-th-lift 0.7.7-2 rebuild with ghc,8.0.2 Modified: haskell-th-lift/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-15 02:30:08 UTC (rev 236883) +++ PKGBUILD 2017-06-15 02:31:40 UTC (rev 236884) @@ -4,12 +4,12 @@ _hkgname=th-lift pkgname=haskell-th-lift pkgver=0.7.7 -pkgrel=1 +pkgrel=2 pkgdesc="Derive Template Haskell's Lift class for datatypes." url="http://github.com/ekmett/th-lift/" 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=('490d349ef2985defcf58eb49686c89ab79f8f9a3e29f3edb195440fe7995ecec6b2538767855ae0a5b9f43e5b00fe0bee167513486be99c111776ab7855d37d2') @@ -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 "BSD3" "${pkgdir}/usr/share/licenses/${pkgname}/BSD3" rm -f "${pkgdir}/usr/share/doc/${pkgname}/BSD3" + + # Remove static libs + find "$pkgdir"/usr/lib -name "*.a" -delete }
