[arch-commits] Commit in (4 files)

Felix Yan felixonmars at gemini.archlinux.org
Sat Aug 20 19:26:58 UTC 2022


    Date: Saturday, August 20, 2022 @ 19:26:58
  Author: felixonmars
Revision: 1271130

addpkg: haskell-hookup 0.7-1

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

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

Added: haskell-hookup/trunk/PKGBUILD
===================================================================
--- haskell-hookup/trunk/PKGBUILD	                        (rev 0)
+++ haskell-hookup/trunk/PKGBUILD	2022-08-20 19:26:58 UTC (rev 1271130)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=hookup
+pkgname=haskell-hookup
+pkgver=0.7
+pkgrel=1
+pkgdesc="Abstraction over creating network connections with SOCKS5 and TLS"
+url="https://github.com/glguy/irc-core"
+license=("ISC")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hsopenssl' 'haskell-hsopenssl-x509-system' 'haskell-async'
+         'haskell-attoparsec' 'haskell-network')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('2be6e6af7c03c4b5592567eaaeb4dacdf10b0f94779df0c1180fc94c249ff90a')
+
+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=-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