increase dvbapp PR.
[vuplus_openembedded] / recipes / cmake / cmake.inc
1 # Copyright (C) 2005, Koninklijke Philips Electronics NV.  All Rights Reserved
2 # Released under the MIT license (see packages/COPYING)
3
4 DESCRIPTION = "A cross-platform, open-source make system"
5 HOMEPAGE = "http://www.cmake.org/"
6 LICENSE = "Berkeley-style license"
7 SECTION = "console/utils"
8 PR = "r2"
9
10 CMAKE_MAJOR_VERSION = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
11 SRC_URI = "http://www.cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz"
12
13 inherit autotools
14
15 S = "${WORKDIR}/cmake-${PV}"
16
17 do_configure () {
18         ./configure --prefix=${prefix} || die "./bootstrap failed"
19 }