[arch-commits] Commit in haskell-newtype-generics/repos (2 files)

Felix Yan felixonmars at gemini.archlinux.org
Mon Feb 7 14:23:02 UTC 2022


    Date: Monday, February 7, 2022 @ 14:23:02
  Author: felixonmars
Revision: 1128011

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-newtype-generics/repos/community-staging-x86_64/
  haskell-newtype-generics/repos/community-staging-x86_64/PKGBUILD
    (from rev 1128010, haskell-newtype-generics/trunk/PKGBUILD)

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

Copied: haskell-newtype-generics/repos/community-staging-x86_64/PKGBUILD (from rev 1128010, haskell-newtype-generics/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2022-02-07 14:23:02 UTC (rev 1128011)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=newtype-generics
+pkgname=haskell-newtype-generics
+pkgver=0.6.1
+pkgrel=17
+pkgdesc="A typeclass and set of functions for working with newtypes"
+url="https://github.com/sjakobi/newtype-generics"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-hspec')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('3e746c4e472ae50d9f0114f0b8a84745ae43a2d94e6602f3c1918bccfc3b00a2891696d44f96dda57ea366b0a2c97388685d186de525db27c7ada38a465cdb4e')
+
+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=-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