Package Details: vim-haskell-git r449.b1ac468-1

Git Clone URL: https://aur.archlinux.org/vim-haskell-git.git (read-only, click to copy)
Package Base: vim-haskell-git
Description: Syntax Highlighting and Indentation for Haskell and Cabal.
Upstream URL: https://github.com/neovimhaskell/haskell-vim
Licenses: BSD
Submitter: andreafeletto
Maintainer: bionade24
Last Packager: andreafeletto
Votes: 0
Popularity: 0.000000
First Submitted: 2020-09-08 15:17 (UTC)
Last Updated: 2020-09-08 15:17 (UTC)

Latest Comments

Fuxino commented on 2024-12-26 16:33 (UTC)

This (just adding "makedepends=('git')") builds fine in clean chroot, can you update the PKGBUILD? Thanks


# vim-haskell

# Maintainer: Andrea Feletto <andrea@andreafeletto.com>

pkgname=vim-haskell-git
_pkgname=haskell-vim
pkgver=r458.f35d022
pkgrel=1
pkgdesc='Syntax Highlighting and Indentation for Haskell and Cabal.'
arch=('any')
url='https://github.com/neovimhaskell/haskell-vim'
license=('BSD')
depends=('vim')
makedepends=('git')
source=("git+https://github.com/neovimhaskell/$_pkgname")
sha256sums=('SKIP')

pkgver() {
    cd "$srcdir/$_pkgname"
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
    vimfiles="$pkgdir/usr/share/vim/vimfiles"
    licenses="$pkgdir/usr/share/licenses"

    cd "$srcdir/$_pkgname"
    install -dv "$vimfiles"
    cp -R after doc ftdetect indent syntax tests "$vimfiles/"
    install -Dvm644 LICENSE "$licenses/$_pkgname/LICENSE"
}

Fuxino commented on 2024-11-12 17:06 (UTC)

This needs git as makedepends or it won't build in a clean chroot.