[arch-commits] Commit in (4 files)

Felix Yan felixonmars at archlinux.org
Wed Jun 16 18:37:44 UTC 2021


    Date: Wednesday, June 16, 2021 @ 18:37:44
  Author: felixonmars
Revision: 964310

addpkg: haskell-tasty-checklist 1.0.0.0-1

Added:
  haskell-tasty-checklist/
  haskell-tasty-checklist/repos/
  haskell-tasty-checklist/trunk/
  haskell-tasty-checklist/trunk/PKGBUILD

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

Added: haskell-tasty-checklist/trunk/PKGBUILD
===================================================================
--- haskell-tasty-checklist/trunk/PKGBUILD	                        (rev 0)
+++ haskell-tasty-checklist/trunk/PKGBUILD	2021-06-16 18:37:44 UTC (rev 964310)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=tasty-checklist
+pkgname=haskell-tasty-checklist
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Check multiple items during a tasty test"
+url="https://github.com/kquick/tasty-checklist"
+license=("custom:ISC")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-parameterized-utils')
+makedepends=('ghc' 'uusi' 'haskell-tasty' 'haskell-tasty-expected-failure' 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('246304a54451ccd8acd9a622effb982d6ac80b2e881b6fd1e0eee235ab251eaa')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+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
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+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"
+}



More information about the arch-commits mailing list