25 lines
589 B
Plaintext
Executable File
25 lines
589 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::set_download_url \
|
|
"https://github.com/llvm/llvm-project/releases/download/llvmorg-${V_PKG}/llvm-project-${V_PKG}.tar.xz"
|
|
|
|
#pbuild::set_sha256sum "openmpi-3.1.2.tar.bz2:c654ed847f34a278c52a15c98add40402b4a90f0c540779f1ae6c489af8a76c5"
|
|
|
|
pbuild::add_to_group 'Programming'
|
|
#pbuild::install_docfiles 'AUTHORS' 'LICENSE' 'NEWS' 'README'
|
|
|
|
|
|
pbuild::configure() {
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX="${PREFIX}" \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DLLVM_ENABLE_PROJECTS=clang \
|
|
-G "Unix Makefiles" \
|
|
../src/llvm/ \
|
|
|| exit 1
|
|
}
|
|
|
|
pbuild::post_install() {
|
|
:
|
|
}
|