summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 68b84b62586c7c8f1e0867a0d1469b31c564e1dd (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: Yang Bai <hamo.by@gmail.com>
# Contributor: Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com>

pkgname=auto-complete-clang-async-bin
pkgver=20140918
pkgrel=1
pkgdesc="emacs-clang-complete-async is an emacs extension to complete C and C++ code, it uses libclang to parse the source code on the fly and provides completion candidates to auto-complete (binary only)"
arch=('i686' 'x86_64')
url="https://github.com/Golevka/emacs-clang-complete-async"
license=('GPL')
depends=('clang')
makedepends=('git')
source=("git+https://github.com/Golevka/emacs-clang-complete-async.git")
md5sums=('SKIP')

build() {
  cd "${srcdir}/emacs-clang-complete-async"
  make
}

package() {
  mkdir -p "${pkgdir}/usr/bin"

  cp "${srcdir}/emacs-clang-complete-async/clang-complete" "${pkgdir}/usr/bin"
}