mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-25 02:52:16 +08:00
43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
|
|
pkgname=cmake
|
|
pkgver=2.8.7
|
|
pkgrel=2
|
|
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')
|
|
makedepends=('qt')
|
|
install=${pkgname}.install
|
|
source=("http://www.cmake.org/files/v2.8/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('e1b237aeaed880f65dec9c20602452f6')
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
|
|
./bootstrap --prefix=/usr \
|
|
--mandir=/share/man \
|
|
--docdir=/share/doc/cmake \
|
|
--system-libs \
|
|
--qt-gui \
|
|
--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
|
|
}
|