- new command 'modbuild' to build modules - separate bootstrapping from other build-blocks - review BASH libraries - adapt build-blocks in bootstrapping
23 lines
525 B
Plaintext
Executable File
23 lines
525 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::configure() {
|
|
"${MODULE_SRCDIR}"/configure \
|
|
--prefix="${PREFIX}" \
|
|
--disable-java \
|
|
--disable-threads \
|
|
--disable-shared \
|
|
--enable-relocatable \
|
|
--disable-openmp \
|
|
--disable-acl \
|
|
--disable-curses \
|
|
--with-included-gettext \
|
|
--without-libiconv-prefix \
|
|
--without-libintl-prefix \
|
|
--with-included-libxml \
|
|
--with-pic=yes \
|
|
|| exit 1
|
|
}
|
|
|
|
pbuild::add_to_group 'Tools'
|
|
pbuild::make_all
|