[arch-commits] Commit in haskell-monad-gen/repos (2 files)

Felix Yan felixonmars at archlinux.org
Thu Sep 17 15:05:25 UTC 2020


    Date: Thursday, September 17, 2020 @ 15:05:24
  Author: felixonmars
Revision: 708689

archrelease: copy trunk to community-x86_64

Added:
  haskell-monad-gen/repos/community-x86_64/
  haskell-monad-gen/repos/community-x86_64/PKGBUILD
    (from rev 708688, haskell-monad-gen/trunk/PKGBUILD)

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

Copied: haskell-monad-gen/repos/community-x86_64/PKGBUILD (from rev 708688, haskell-monad-gen/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2020-09-17 15:05:24 UTC (rev 708689)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=monad-gen
+pkgname=haskell-monad-gen
+pkgver=0.3.0.1
+pkgrel=1
+pkgdesc="A simple monad for generating fresh integers"
+url="https://bitbucket.org/jozefg/monad-gen"
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' )
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('be8485023fce236b5b915f2f6074f7b0470a2040f84cdd137c5227f1b4c98465')
+
+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