Date: Saturday, September 23, 2017 @ 14:42:53 Author: felixonmars Revision: 259944
upgpkg: haskell-graphscc 1.0.4-6 Modified: haskell-graphscc/trunk/PKGBUILD ----------+ PKGBUILD | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-09-23 14:42:23 UTC (rev 259943) +++ PKGBUILD 2017-09-23 14:42:53 UTC (rev 259944) @@ -5,7 +5,7 @@ _hkgname=GraphSCC pkgname=haskell-graphscc pkgver=1.0.4 -pkgrel=5 +pkgrel=6 pkgdesc="Tarjan's algorithm for computing the strongly connected components of a graph" url="https://hackage.haskell.org/package/${_hkgname}" license=("custom:BSD3") @@ -13,12 +13,12 @@ depends=('ghc-libs') makedepends=('ghc') source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") -sha256sums=('789d93e6188845f009779b1c800b043f524587a21d324be8594d09b0f8e86cf1') +sha512sums=('0ef058c98d41869fa44a85a8b425b8ee55e649e966ec3554a6aa4d4c798338b6072c45ffe8aab5d9ca2bcebbeb1fdd5b75d1313b87e7f81b88e33c00954c78c8') build() { cd "${srcdir}/${_hkgname}-${pkgver}" - runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \ + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid -fsplit-base runhaskell Setup build @@ -36,7 +36,4 @@ 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 }