mirror of
https://github.com/Pmodules/Pmodules.git
synced 2026-06-25 09:07:57 +02:00
d16ff5c078
- SOURCE_URL added
25 lines
583 B
Python
Executable File
25 lines
583 B
Python
Executable File
#!/usr/bin/env modbuild
|
|
|
|
SOURCE_URL="https://ftp.gnu.org/pub/gnu/$P/$P-$V.tar.xz"
|
|
|
|
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
|