Date: Thursday, June 15, 2017 @ 10:44:42 Author: felixonmars Revision: 237135
upgpkg: haskell-data-endian 0.1.1-2 rebuild with ghc,8.0.2 Modified: haskell-data-endian/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-15 10:44:09 UTC (rev 237134) +++ PKGBUILD 2017-06-15 10:44:42 UTC (rev 237135) @@ -4,12 +4,12 @@ _hkgname=data-endian pkgname=haskell-data-endian pkgver=0.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="Endian-sensitive data" url="https://github.com/mvv/data-endian" 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=('a8e94f996a0b1c929cd01b8f38c52149cf3bac0f50449d327ba66ac4a378ba5c3826860abe4d1592aa83ed9ca81dba6083c63a66e6ee0655c27521cb87977a90') @@ -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 }
