mirror of
https://github.com/Pmodules/Pmodules.git
synced 2026-06-26 01:23:09 +02:00
26 lines
619 B
Python
Executable File
26 lines
619 B
Python
Executable File
#!/usr/bin/env modbuild
|
|
|
|
SOURCE_URL="https://ftp.gnu.org/pub/gnu/$P/$P-$V.tar.gz"
|
|
|
|
pbuild::configure() {
|
|
"${MODULE_SRCDIR}"/configure \
|
|
--prefix="${PREFIX}" \
|
|
--bindir="${PREFIX}/sbin" \
|
|
--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
|