[arch-commits] Commit in haskell-dlist/trunk (PKGBUILD)

Felix Yan felixonmars at archlinux.org
Thu Jun 15 02:27:32 UTC 2017


    Date: Thursday, June 15, 2017 @ 02:27:30
  Author: felixonmars
Revision: 236880

upgpkg: haskell-dlist 0.8.0.2-2

rebuild with ghc,8.0.2

Modified:
  haskell-dlist/trunk/PKGBUILD

----------+
 PKGBUILD |   29 +++++++++++++++--------------
 1 file changed, 15 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-06-15 02:24:48 UTC (rev 236879)
+++ PKGBUILD	2017-06-15 02:27:30 UTC (rev 236880)
@@ -3,28 +3,26 @@
 # Contributor: Don Stewart <dons at galois.com>
 # Contributor: Lex Black <autumn-wind at web dot de>
 
+_hkgname=dlist
 pkgname=haskell-dlist
 pkgver=0.8.0.2
-_hkgname=dlist
-_licensefile=LICENSE
-pkgrel=1
+pkgrel=2
 pkgdesc="Differences lists"
 url="https://hackage.haskell.org/package/dlist"
 license=('BSD')
 arch=('i686' 'x86_64')
-depends=('ghc=8.0.1')
-options=('strip')
+depends=('ghc')
 source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
 sha256sums=('77397ecfb9a7cbfac15226cbe09ec156a3deb6e21c7af948bc8ab459e88641b1')
 
 build() {
-    cd ${_hkgname}-${pkgver}
+    cd "${srcdir}/${_hkgname}-${pkgver}"
     
-    runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
-        --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+    runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
         --libsubdir=\$compiler/site-local/\$pkgid
     runhaskell Setup build
-    runhaskell Setup haddock
+    runhaskell Setup haddock --hoogle --html
     runhaskell Setup register --gen-script
     runhaskell Setup unregister --gen-script
     sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
@@ -36,9 +34,12 @@
     
     install -D -m744 register.sh   "${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
     install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
-    install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-    ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
-    runhaskell Setup copy --destdir=${pkgdir}
-    install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-    rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}
+    install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+    ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+    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
 }



More information about the arch-commits mailing list