18 lines
296 B
Python
Executable File
18 lines
296 B
Python
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::set_download_url "http://www.cpan.org/src/5.0/$P-$V.tar.gz"
|
|
|
|
pbuild::compile_in_sourcetree
|
|
pbuild::add_to_group 'Programming'
|
|
|
|
pbuild::configure() {
|
|
"${SRC_DIR}"/configure.gnu \
|
|
--prefix="${PREFIX}" \
|
|
|| exit 1
|
|
}
|
|
|
|
pbuild::post_compile() {
|
|
make test || :
|
|
}
|
|
|