Date: Sunday, April 30, 2023 @ 08:41:29
Author: felixonmars
Revision: 1455213
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-generic-data/repos/community-staging-x86_64/
haskell-generic-data/repos/community-staging-x86_64/PKGBUILD
(from rev 1455212, haskell-generic-data/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: haskell-generic-data/repos/community-staging-x86_64/PKGBUILD (from rev
1455212, haskell-generic-data/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-30 08:41:29 UTC (rev 1455213)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan <[email protected]>
+
+_hkgname=generic-data
+pkgname=haskell-generic-data
+pkgver=1.0.0.1
+pkgrel=20
+pkgdesc="Deriving instances with GHC.Generics and related utilities"
+url="https://github.com/Lysxia/generic-data"
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ap-normalize' 'haskell-base-orphans'
'haskell-contravariant'
+ 'haskell-show-combinators')
+makedepends=('ghc' 'haskell-generic-lens' 'haskell-glob' 'haskell-one-liner'
+ 'haskell-show-combinators' 'haskell-tasty' 'haskell-tasty-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('de77b3236542a82558577bd2ca3a0978af93543ae1d359bd65b83a7401b88b0a49689e4672c83690ab3f74b59a8ba99aa1d32e3b0c0f8627e8cf4e11647434b2')
+
+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
+}