blob: 7cbf4b3f4aab66938b202f081e948710484725e1 (
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
26
27
|
# Maintainer: Geballin - Guillaume Ballin <macniaque at free dot fr>
# Contributor: Alex Whitt <alex.joseph.whitt@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=emacs-company-mode
pkgver=1.0.2
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=("$pkgname-$pkgver.tar.gz::https://github.com/company-mode/company-mode/archive/${pkgver}.tar.gz")
sha256sums=('92b937636084dc910a3d04fac3e64d08df5444b34143ea903c8bd827fde8a8a6')
build() {
cd company-mode-${pkgver}
emacs -q --no-splash -batch -L . -f batch-byte-compile *.el
}
package() {
cd 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/
}
|