Date: Wednesday, April 5, 2023 @ 05:40:59
Author: felixonmars
Revision: 1435785
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-invariant/repos/community-staging-x86_64/
haskell-invariant/repos/community-staging-x86_64/PKGBUILD
(from rev 1435783, haskell-invariant/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: haskell-invariant/repos/community-staging-x86_64/PKGBUILD (from rev
1435783, haskell-invariant/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-05 05:40:59 UTC (rev 1435785)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan <[email protected]>
+
+_hkgname=invariant
+pkgname=haskell-invariant
+pkgver=0.6.1
+pkgrel=6
+pkgdesc="Haskell98 invariant functors"
+url="https://github.com/nfrisby/invariant-functors"
+license=('custom:BSD2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bifunctors' 'haskell-comonad'
'haskell-contravariant'
+ 'haskell-profunctors' 'haskell-statevar' 'haskell-tagged'
'haskell-th-abstraction'
+ 'haskell-transformers-compat' 'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a0968e783aa0bfa8355b8acd95afed411ce669954d55ee8434c61345473a8f331d3ce1ec311ed3f1c763e7ed96ee3e050e5428385342987b4c34c69a2cdd2078')
+
+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
+}