29 lines
399 B
Plaintext
Executable File
29 lines
399 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::configure() {
|
|
"${MODULE_SRCDIR}"/configure \
|
|
--prefix="${PREFIX}" \
|
|
|| exit 1
|
|
}
|
|
|
|
# use system gcc to compile
|
|
declare -rx CC=gcc
|
|
|
|
pbuild::add_to_group 'Programming'
|
|
pbuild::set_docfiles \
|
|
AUTHORS \
|
|
COPYING \
|
|
COPYING.EXCEPTION \
|
|
COPYINGv3 \
|
|
NEWS \
|
|
README \
|
|
THANKS
|
|
|
|
pbuild::make_all
|
|
|
|
# Local Variables:
|
|
# mode: sh
|
|
# sh-basic-offset: 8
|
|
# tab-width: 8
|
|
# End:
|