19 lines
360 B
Bash
Executable File
19 lines
360 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$(dirname $0)/../../../lib/libem.bash"
|
|
|
|
function em.configure() {
|
|
"${MODULE_SRCDIR}"/configure \
|
|
--prefix="${PREFIX}" \
|
|
|| exit 1
|
|
}
|
|
|
|
# use system gcc to compile
|
|
declare -rx CC=gcc
|
|
|
|
em.add_to_family 'Programming'
|
|
em.set_docfiles 'AUTHORS' 'COPYING' 'NEWS' 'README' 'THANKS'
|
|
em.set_build_dependencies 'autoconf' 'automake'
|
|
em.make_all
|
|
|