summaryrefslogtreecommitdiff
path: root/packages/cmake.sh
blob: 89e8666df35a684c4fedfbb478ed91c7dfa9454d (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_switch_branch master
    run_cmake

    run_make
    run_make_install
}

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

function package_use {
    env_path "bin"
}