16 lines
268 B
Plaintext
Executable File
16 lines
268 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
SOURCE_URL="https://ftp.gnu.org/gnu/$P/$P-$V.tar.bz2"
|
|
|
|
pbuild::configure() {
|
|
"${SRC_DIR}"/configure \
|
|
--prefix="${PREFIX}" \
|
|
|| exit 1
|
|
}
|
|
|
|
# use system gcc to compile
|
|
declare -rx CC=gcc
|
|
|
|
pbuild::add_to_group 'Programming'
|
|
pbuild::make_all
|