[arch-commits] Commit in haskell-test-lib/repos (2 files)

Felix Yan felixonmars at gemini.archlinux.org
Wed Jun 29 15:24:47 UTC 2022


    Date: Wednesday, June 29, 2022 @ 15:24:47
  Author: felixonmars
Revision: 1240806

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-test-lib/repos/community-staging-x86_64/
  haskell-test-lib/repos/community-staging-x86_64/PKGBUILD
    (from rev 1240805, haskell-test-lib/trunk/PKGBUILD)

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

Copied: haskell-test-lib/repos/community-staging-x86_64/PKGBUILD (from rev 1240805, haskell-test-lib/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2022-06-29 15:24:47 UTC (rev 1240806)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=test-lib
+pkgname=haskell-test-lib
+pkgver=0.4
+pkgrel=29
+pkgdesc="A library to make a quick test-runner script."
+url="https://hackage.haskell.org/package/test-lib"
+license=("custom:ISC")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-simple-get-opt' 'haskell-test-framework'
+         'haskell-test-framework-hunit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('852cff65aae4aaf0fe98c13abc6728c05afb8e24079dd8b2a3e4b7bd8f98e04a')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+    --prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname --enable-tests \
+    --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \
+    --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+    --ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  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 -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+  # Conflicts with bluez-utils
+  mv "$pkgdir"/usr/bin/{,hs-}test-runner
+}



More information about the arch-commits mailing list