# # Core Packages for Chakra, part of chakra-project.org # # maintainer (i686): Phil Miller # maintainer (x86_64): Manuel Tortosa # include global config source ../_buildscripts/${current_repo}-${_arch}-cfg.conf pkgname=cmake pkgver=2.8.5 pkgrel=3 pkgdesc="A cross-platform open-source make system" arch=('i686' 'x86_64') license=('custom') url="http://www.cmake.org" depends=('curl' 'libarchive' 'shared-mime-info') install=${pkgname}.install source=("http://www.cmake.org/files/v2.8/${pkgname}-${pkgver}.tar.gz") md5sums=('3c5d32cec0f4c2dc45f4c2e84f4a20c5') build() { cd "${srcdir}"/${pkgname}-${pkgver} ./bootstrap --prefix=/usr \ --mandir=/share/man \ --docdir=/share/doc/cmake \ --system-libs \ --parallel=2 make } package() { cd "${srcdir}"/${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install vimpath="$pkgdir/usr/share/vim/vimfiles" install -Dm644 Docs/cmake-indent.vim ${vimpath}/indent/cmake-indent.vim install -Dm644 Docs/cmake-syntax.vim ${vimpath}/syntax/cmake-syntax.vim install -Dm644 Docs/cmake-mode.el ${pkgdir}/usr/share/emacs/site-lisp/cmake-mode.el install -Dm644 Copyright.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE }