mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=cmake
|
|
pkgver=2.8.9
|
|
pkgrel=1
|
|
pkgdesc="A cross-platform open-source make system"
|
|
arch=('x86_64')
|
|
license=('custom')
|
|
url="http://www.cmake.org"
|
|
depends=('curl' 'libarchive' 'shared-mime-info')
|
|
makedepends=('qt')
|
|
install=${pkgname}.install
|
|
source=("http://www.cmake.org/files/v2.8/${pkgname}-${pkgver}.tar.gz"
|
|
'fix-pkg-config.patch')
|
|
md5sums=('801f4c87f8b604f727df5bf1f05a59e7'
|
|
'1d0e7fddd703a36df30262d7616a59be')
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
|
|
#patch -p1 -i "${srcdir}"/fix-pkg-config.patch
|
|
|
|
./bootstrap --prefix=/usr \
|
|
--mandir=/share/man \
|
|
--docdir=/share/doc/cmake \
|
|
--system-libs \
|
|
--qt-gui \
|
|
--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
|
|
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
|
|
}
|