summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fab49a696ece62076c2cfb5a4065b68f7b1dc0a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: Alex Whitt <alex.joseph.whitt@gmail.com>

pkgname=emacs-company-mode
pkgver=0.9.3
pkgrel=1
pkgdesc="Modular in-buffer completion framework for Emacs"
url="http://company-mode.github.io"
arch=('any')
license=('GPL3')
depends=('emacs')
makedepends=('git')
provides=('emacs-company-mode')
source=("https://github.com/company-mode/company-mode/archive/${pkgver}.tar.gz")
sha256sums=('SKIP')

build() {
  cd "${srcdir}/company-mode-${pkgver}"
  emacs -q --no-splash -batch -L . -f batch-byte-compile *.el
}

package() {
  cd "${srcdir}/company-mode-${pkgver}"
  install -d "${pkgdir}/usr/share/emacs/site-lisp/company-mode"
  install -m644 *.el{c,} "${pkgdir}/usr/share/emacs/site-lisp/company-mode/"
}