# Maintainer: Felix Yan <felixonmars@archlinux.org>

_hkgname=invariant
pkgname=haskell-invariant
pkgver=0.6.3
pkgrel=6
pkgdesc="Haskell98 invariant functors"
url="https://github.com/nfrisby/invariant-functors"
license=('custom:BSD2')
arch=('x86_64' 'aarch64')
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=('d3bff53881c1687385ffbc9055bafab82be92a7f5b40d6cf21eae28616660bee61ffca0180917665c6c08402e57fc7d461b1352da5636da97c3c610dd6d9d860')

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
    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
}
