15 lines
317 B
Plaintext
Executable File
15 lines
317 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::set_download_url "https://gmplib.org/download/$P/$P-$V_PKG.tar.bz2"
|
|
pbuild::add_to_group 'Libraries'
|
|
|
|
# use system gcc to compile
|
|
declare -rx CC=gcc
|
|
declare -rx CPP=/usr/bin/cpp
|
|
|
|
pbuild::add_configure_args "--disable-shared"
|
|
pbuild::add_configure_args "--with-pic"
|
|
|
|
pbuild::make_all
|
|
|