[arch-commits] Commit in (4 files)

Felix Yan felixonmars at archlinux.org
Wed Jun 16 18:34:32 UTC 2021


    Date: Wednesday, June 16, 2021 @ 18:34:32
  Author: felixonmars
Revision: 964306

addpkg: haskell-kvitable 1.0.0.0-1

Added:
  haskell-kvitable/
  haskell-kvitable/repos/
  haskell-kvitable/trunk/
  haskell-kvitable/trunk/PKGBUILD

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

Added: haskell-kvitable/trunk/PKGBUILD
===================================================================
--- haskell-kvitable/trunk/PKGBUILD	                        (rev 0)
+++ haskell-kvitable/trunk/PKGBUILD	2021-06-16 18:34:32 UTC (rev 964306)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=kvitable
+pkgname=haskell-kvitable
+pkgver=1.0.0.0
+pkgrel=1
+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
+  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
+}
+
+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