summaryrefslogtreecommitdiff
path: root/testing/cmake/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-01-06 09:54:55 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-01-06 09:54:55 -0300
commit60f323f25d2c0addbce5832ffbda060b0410d14f (patch)
tree644b9212e37f1a63dcef3977159033dee2f04392 /testing/cmake/PKGBUILD
parent9e2eedaa4921b8d57c364fb3e2a8c9e2e96b8e69 (diff)
parent817e58c278cb8ebee7743205877d0f67c431fcec (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: core/inetutils/PKGBUILD extra/audacious/PKGBUILD extra/cvs/PKGBUILD kde-unstable/libkipi/PKGBUILD libre/linux-libre/PKGBUILD libre/mplayer-vaapi-libre/PKGBUILD libre/pacman/PKGBUILD libre/psutils-libre/PKGBUILD libre/texlive-bin-libre/PKGBUILD staging/kdebase-runtime/PKGBUILD
Diffstat (limited to 'testing/cmake/PKGBUILD')
-rw-r--r--testing/cmake/PKGBUILD40
1 files changed, 40 insertions, 0 deletions
diff --git a/testing/cmake/PKGBUILD b/testing/cmake/PKGBUILD
new file mode 100644
index 000000000..14ef6ab43
--- /dev/null
+++ b/testing/cmake/PKGBUILD
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 145938 2012-01-04 13:11:32Z dreisner $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+# Contributor: Pierre Schmitz <pierre@archlinux.de>
+
+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')
+optdepends=('qt: cmake-gui')
+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
+}