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

Felix Yan felixonmars at gemini.archlinux.org
Thu Sep 16 13:20:15 UTC 2021


    Date: Thursday, September 16, 2021 @ 13:20:15
  Author: felixonmars
Revision: 1016226

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-kvitable/repos/community-staging-x86_64/PKGBUILD (from rev 1016225, haskell-kvitable/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-09-16 13:20:15 UTC (rev 1016226)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=kvitable
+pkgname=haskell-kvitable
+pkgver=1.0.0.0
+pkgrel=18
+pkgdesc="Key/Value Indexed Table container and formatting library"
+url="https://hackage.haskell.org/package/kvitable"
+license=("custom:ISC")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-lucid' 'haskell-microlens' 'haskell-prettyprinter')
+makedepends=('ghc' 'haskell-html-parse' 'haskell-pretty-show' 'haskell-tasty' 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('9fcb3fc96d6e1f2ac5f580d03b04a1e13f534f247498fb3b0beb89e100f715dd')
+
+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 $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 -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



More information about the arch-commits mailing list