pkgname=cmake pkgver=3.12.1 pkgrel=1 pkgdesc='A cross-platform open-source make system' arch=('x86_64') url="http://www.cmake.org/" license=('custom') depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libuv' 'rhash') makedepends=('qt5-base' 'python3-sphinx' 'emacs') optdepends=('qt5-base: cmake-gui' 'libxkbcommon-x11: cmake-gui') source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz") sha512sums=('7a0a769ef060785a8dc8c6aa272435a90a07cc8079f6c83c916da0b79d8bcdefca0d7be21f55f408ab4dfa6a57caa9ff8dec4be993145f4e3337ff392481b692') prepare() { cd ${pkgname}-${pkgver} } build() { cd ${pkgname}-${pkgver} ./bootstrap --prefix=/usr \ --mandir=/share/man \ --docdir=/share/doc/cmake \ --sphinx-man \ --system-libs \ --qt-gui \ --qt-qmake=/usr/lib/qt5/bin/qmake \ --parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN) make } package() { cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install vimpath="${pkgdir}/usr/share/vim/vimfiles" install -d "${vimpath}"/{help,indent,syntax} ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \ "${vimpath}"/indent/ ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \ "${vimpath}"/syntax/ install -d "${pkgdir}"/usr/share/emacs/site-lisp/ emacs -batch -f batch-byte-compile \ "${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \ "${pkgdir}"/usr/share/emacs/site-lisp/ install -Dm644 Copyright.txt \ "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE }