17 lines
339 B
Plaintext
Executable File
17 lines
339 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::set_download_url "https://cmake.org/files/v${V_MAJOR}.${V_MINOR}/$P-$V.tar.gz"
|
|
pbuild::add_to_group 'Programming'
|
|
|
|
declare bootstrap_flags=''
|
|
|
|
pbuild::pre_configure() {
|
|
bootstrap_flags+='--system-curl'
|
|
}
|
|
|
|
pbuild::configure() {
|
|
"${SRC_DIR}/bootstrap" --prefix="${PREFIX}" ${bootstrap_flags} --verbose
|
|
}
|
|
|
|
|