Date: Tuesday, April 4, 2023 @ 16:27:31
  Author: felixonmars
Revision: 1434591

addpkg: haskell-hls-explicit-record-fields-plugin 1.0.0.0-1

Added:
  haskell-hls-explicit-record-fields-plugin/
  haskell-hls-explicit-record-fields-plugin/repos/
  haskell-hls-explicit-record-fields-plugin/trunk/
  haskell-hls-explicit-record-fields-plugin/trunk/PKGBUILD

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

Added: haskell-hls-explicit-record-fields-plugin/trunk/PKGBUILD
===================================================================
--- haskell-hls-explicit-record-fields-plugin/trunk/PKGBUILD                    
        (rev 0)
+++ haskell-hls-explicit-record-fields-plugin/trunk/PKGBUILD    2023-04-04 
16:27:31 UTC (rev 1434591)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan <[email protected]>
+
+_hkgname=hls-explicit-record-fields-plugin
+pkgname=haskell-hls-explicit-record-fields-plugin
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Explicit record fields plugin for Haskell Language Server"
+url="https://github.com/haskell/haskell-language-server";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghcide' 'haskell-hls-graph' 
'haskell-hls-plugin-api' 'haskell-lens'
+         'haskell-lsp' 'haskell-syb' 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 'haskell-lsp-test')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";)
+sha256sums=('ebdd590b978b09ddbfe53842c3173e876ec13c4d60bb196c5aba4794befcdccb')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+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
+  # missing testdata in hackage tarball
+  runhaskell Setup test || echo "Tests failed"
+}
+
+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
+}

Reply via email to