Date: Sunday, December 25, 2022 @ 19:58:34
Author: felixonmars
Revision: 1366539
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-th-utilities/repos/community-staging-x86_64/
haskell-th-utilities/repos/community-staging-x86_64/PKGBUILD
(from rev 1366537, haskell-th-utilities/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: haskell-th-utilities/repos/community-staging-x86_64/PKGBUILD (from rev
1366537, haskell-th-utilities/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-12-25 19:58:34 UTC (rev 1366539)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan <[email protected]>
+
+_hkgname=th-utilities
+pkgname=haskell-th-utilities
+pkgver=0.2.5.0
+pkgrel=12
+pkgdesc="Collection of useful functions for use with Template Haskell"
+url="https://github.com/fpco/th-utilities"
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-primitive' 'haskell-syb' 'haskell-th-abstraction'
'haskell-th-orphans')
+makedepends=('ghc' 'haskell-hspec' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('49653b33dcc3413d0feb7281a1ce3ae2197e8327900058993b7e1f5416e2b3496d49aa8c417e3ae6f92755a25b80159a653038569f823f9085d88996f3b42206')
+
+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
+ 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 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}