summaryrefslogtreecommitdiff
path: root/packages/cmake.sh
blob: e54720db39624585d4d6a2a63e49fcae99c43230 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

function package_build {
    run_git_switch_branch master
    run_cmake

    run_make
    run_make_install
}

function package_get_source {
    run_git_clone git://cmake.org/cmake.git
}

function package_use {
    env_path "bin"
}