# Maintainer: Felix Yan <felixonmars@archlinux.org> # Contributor: Arch Haskell Team <arch-haskell@haskell.org> _hkgname=vector-instances pkgname=haskell-vector-instances pkgver=3.4.2 pkgrel=34 pkgdesc="Orphan Instances for 'Data.Vector'" url="https://github.com/ekmett/vector-instances" license=("BSD") arch=('x86_64') depends=('ghc-libs' 'haskell-comonad' 'haskell-hashable' 'haskell-keys' 'haskell-pointed' 'haskell-semigroupoids' 'haskell-vector') makedepends=('ghc') source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") sha512sums=('120351ae58dba4161160a20b04696fc72dbdfde9c114fb3e5a232795e297ed13beef0822f4d10012bfd61a3890f43cc28a6a4f60cba5bc57117e5cfc4cd301f9') 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 \ -fhashable 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 }