20 lines
375 B
Plaintext
Executable File
20 lines
375 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::set_download_url "https://github.com/hfp/libxsmm/archive/1.13/libxsmm-1.13.tar.gz"
|
|
pbuild::add_to_group 'Compiler'
|
|
|
|
pbuild::install_docfiles 'CONTRIBUTING.md'
|
|
pbuild::install_docfiles 'LICENSE.md'
|
|
pbuild::install_docfiles 'README.md'
|
|
|
|
pbuild::compile_in_sourcetree
|
|
|
|
pbuild::configure() {
|
|
:
|
|
}
|
|
|
|
pbuild::compile() {
|
|
make PREFIX="${PREFIX}"
|
|
}
|
|
|