Date: Tuesday, May 16, 2023 @ 21:47:37
  Author: felixonmars
Revision: 1462851

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-explicit-record-fields-plugin/repos/community-staging-x86_64/
  
haskell-hls-explicit-record-fields-plugin/repos/community-staging-x86_64/PKGBUILD
    (from rev 1462850, haskell-hls-explicit-record-fields-plugin/trunk/PKGBUILD)

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

Copied: 
haskell-hls-explicit-record-fields-plugin/repos/community-staging-x86_64/PKGBUILD
 (from rev 1462850, haskell-hls-explicit-record-fields-plugin/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2023-05-16 21:47:37 UTC (rev 1462851)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan <felixonm...@archlinux.org>
+
+_hkgname=hls-explicit-record-fields-plugin
+pkgname=haskell-hls-explicit-record-fields-plugin
+pkgver=1.0.0.0
+pkgrel=15
+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=-fllvm \
+    --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
+  # 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