13 lines
161 B
Python
Executable File
13 lines
161 B
Python
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::configure() {
|
|
"${SRC_DIR}"/configure.gnu \
|
|
--prefix="${PREFIX}" \
|
|
|| exit 1
|
|
}
|
|
|
|
pbuild::post_compile() {
|
|
make test || :
|
|
}
|
|
|