# Maintainer: Jon Eyolfson # Contributor: Chirantan EKbote # Contributor: megadriver pkgname=emacs-helm pkgver=2.8.5 pkgrel=1 pkgdesc="Incremental completion and selection narrowing framework for Emacs" url="https://github.com/emacs-helm/helm" arch=('any') license=('GPL3') depends=('emacs') makedepends=('git') provides=('emacs-helm') conflicts=('emacs-helm') source=("https://github.com/emacs-helm/helm/archive/v${pkgver}.tar.gz") sha256sums=('SKIP') build() { cd "${srcdir}/helm-${pkgver}" make } package() { cd "${srcdir}/helm-${pkgver}" install -d "${pkgdir}/usr/share/emacs/site-lisp/helm" install -m644 helm* "${pkgdir}/usr/share/emacs/site-lisp/helm/" }