[arch-commits] Commit in haskell-data-clist/repos (2 files)

Felix Yan felixonmars at gemini.archlinux.org
Mon Aug 8 15:21:12 UTC 2022


    Date: Monday, August 8, 2022 @ 15:21:12
  Author: felixonmars
Revision: 1261067

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-data-clist/repos/community-staging-x86_64/
  haskell-data-clist/repos/community-staging-x86_64/PKGBUILD
    (from rev 1261066, haskell-data-clist/trunk/PKGBUILD)

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

Copied: haskell-data-clist/repos/community-staging-x86_64/PKGBUILD (from rev 1261066, haskell-data-clist/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2022-08-08 15:21:12 UTC (rev 1261067)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=data-clist
+pkgname=haskell-data-clist
+pkgver=0.2
+pkgrel=23
+pkgdesc="Simple functional ring type."
+url="https://github.com/sw17ch/data-clist"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('d47b7208170b05610c3e37e02e9a807fe20023413c3498148164fdae1b306c1bde30a76a0a99dd2b2d1d0fabbf2ebe487454cf296cdc558bbf56a89c9db52f14')
+
+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
+    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
+}
+
+check() {
+    cd $_hkgname-$pkgver
+    runhaskell Setup test --show-details=direct
+}
+
+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