void-packages/srcpkgs/rtags/template
2017-12-24 12:07:11 -05:00

20 lines
525 B
Bash

# Template file for 'rtags'
pkgname=rtags
version=2.16
revision=2
nocross=yes
wrksrc="${pkgname}"
build_style=cmake
make_build_args="VERBOSE=1"
makedepends="pkg-config git clang llvm libressl-devel zlib-devel"
short_desc="A C/C++ indexer with integration for Emacs based on clang"
maintainer="Alexander Egorenkov <egorenar-dev@posteo.net>"
license="GPL-3"
homepage="https://github.com/Andersbakken/rtags"
do_fetch() {
git clone ${homepage}
cd ${wrksrc}
git checkout v${version}
git submodule update --init --recursive
}