summaryrefslogtreecommitdiff
path: root/templates/cmake/template
blob: 1646c823c972f8e6d5d2455f3a0f04c2eed67169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pkgname=cmake
version=4.3.3
upstream="https://github.com/Kitware/CMake/releases/download/v${version}/cmake-${version}.tar.gz"

function do_configure {
	./bootstrap
}

function do_build {
	make
}

function do_install {
	make DESTDIR="${MASTERDIR}" install
}