[arch-commits] Commit in (4 files)

Felix Yan felixonmars at archlinux.org
Wed Sep 23 22:06:52 UTC 2020


    Date: Wednesday, September 23, 2020 @ 22:06:52
  Author: felixonmars
Revision: 711608

addpkg: haskell-mueval 0.9.3-1

Added:
  haskell-mueval/
  haskell-mueval/repos/
  haskell-mueval/trunk/
  haskell-mueval/trunk/PKGBUILD

----------+
 PKGBUILD |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

Added: haskell-mueval/trunk/PKGBUILD
===================================================================
--- haskell-mueval/trunk/PKGBUILD	                        (rev 0)
+++ haskell-mueval/trunk/PKGBUILD	2020-09-23 22:06:52 UTC (rev 711608)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=mueval
+pkgname=haskell-mueval
+pkgver=0.9.3
+pkgrel=1
+pkgdesc="Safely evaluate pure Haskell expressions"
+url="https://github.com/gwern/mueval"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-extensible-exceptions' 'haskell-hint'
+         'haskell-show' 'haskell-simple-reflect')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('f72a8bbaffecaeb55b67d78011e182073be8ba9f4a90824903e4c78cfe6e1ef7')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  sed -i 's/ -static//' $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+    --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+    --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+    --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+    --ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}



More information about the arch-commits mailing list