Skip to content
Snippets Groups Projects
PKGBUILD 1.71 KiB
Newer Older
Felix Yan's avatar
Felix Yan committed
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Arch Haskell Team <arch-haskell@haskell.org>

_hkgname=vector-instances
pkgname=haskell-vector-instances
Felix Yan's avatar
Felix Yan committed
pkgver=3.4
Felix Yan's avatar
Felix Yan committed
pkgrel=20
Felix Yan's avatar
Felix Yan committed
pkgdesc="Orphan Instances for \'Data.Vector\'"
url="http://github.com/ekmett/vector-instances"
license=("custom:BSD3")
arch=('i686' 'x86_64')
Felix Yan's avatar
Felix Yan committed
depends=('ghc-libs' "haskell-comonad" "haskell-hashable" "haskell-keys" "haskell-pointed"
Felix Yan's avatar
Felix Yan committed
         "haskell-semigroupoids" "haskell-semigroups" "haskell-vector")
Felix Yan's avatar
Felix Yan committed
makedepends=('ghc')
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
Felix Yan's avatar
Felix Yan committed
sha256sums=('1b0246ef0cf8372d61d5c7840d857f49299af2304b5107510377255ed4dd5381')
Felix Yan's avatar
Felix Yan committed

build() {
    cd "${srcdir}/${_hkgname}-${pkgver}"
    
Felix Yan's avatar
Felix Yan committed
    runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
Felix Yan's avatar
Felix Yan committed
        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
        --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
Felix Yan's avatar
Felix Yan committed
            -fhashable
Felix Yan's avatar
Felix Yan committed
    runhaskell Setup build
    runhaskell Setup register --gen-script
    runhaskell Setup unregister --gen-script
Felix Yan's avatar
Felix Yan committed
    sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
Felix Yan's avatar
Felix Yan committed
    sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
}

package() {
    cd "${srcdir}/${_hkgname}-${pkgver}"
    
Felix Yan's avatar
Felix Yan committed
    install -D -m744 register.sh   "${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
    install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
Felix Yan's avatar
Felix Yan committed
    runhaskell Setup copy --destdir="${pkgdir}"
    install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
    rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
Felix Yan's avatar
Felix Yan committed

    # Remove static libs
    find "$pkgdir"/usr/lib -name "*.a" -delete
Felix Yan's avatar
Felix Yan committed
}