20 lines
276 B
Bash
Executable File
20 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$(dirname $0)/../lib/libem.bash"
|
|
|
|
function em.configure() {
|
|
:
|
|
}
|
|
|
|
function em.build() {
|
|
:
|
|
}
|
|
|
|
function em.install() {
|
|
cd "${MODULE_SRCDIR}"
|
|
rsync --exclude=".info" --delete --verbose --archive . "${PREFIX}"
|
|
}
|
|
|
|
em.add_to_family 'Programming'
|
|
em.make_all
|