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

Felix Yan felixonmars at archlinux.org
Sun Jun 6 22:39:31 UTC 2021


    Date: Sunday, June 6, 2021 @ 22:39:31
  Author: felixonmars
Revision: 956462

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wizards/repos/community-staging-x86_64/
  haskell-wizards/repos/community-staging-x86_64/PKGBUILD
    (from rev 956461, haskell-wizards/trunk/PKGBUILD)

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

Copied: haskell-wizards/repos/community-staging-x86_64/PKGBUILD (from rev 956461, haskell-wizards/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-06-06 22:39:31 UTC (rev 956462)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=wizards
+pkgname=haskell-wizards
+pkgver=1.0.3
+pkgrel=13
+pkgdesc="High level, generic library for interrogative user interfaces"
+url="https://hackage.haskell.org/package/wizards"
+license=("custom:BSD2")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-control-monad-free")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('74289bce609954ecd2d16729b67f4655ebfa2b5211303c2c64c1a7636e78e2b1dc3823472be8d5851fc490d9ff80559bdfbfda59cc753b60cacc4dd1b512663c')
+
+prepare() {
+    cd $_hkgname-$pkgver
+    sed -i 's/< *0.8/<1/' $_hkgname.cabal
+}
+
+build() {
+    cd $_hkgname-$pkgver
+    
+    runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+        --prefix=/usr --docdir=/usr/share/doc/$pkgname \
+        --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+    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 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+    rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



More information about the arch-commits mailing list