- em.xyz renamed to pmodules.xxy

- underscore removed as prefix of function names
- keyword function removed
This commit is contained in:
2015-06-04 20:38:33 +02:00
parent e26a9fae7f
commit b129a8d05d
68 changed files with 522 additions and 522 deletions

View File

@@ -1,26 +1,26 @@
#!/bin/bash
source "$(dirname $0)/../../../lib/libem.bash"
source "$(dirname $0)/../../../lib/libpmodules.bash"
function em.configure() {
pmodules.configure() {
:
}
function em.build() {
pmodules.build() {
cd "${MODULE_SRCDIR}"
make
}
function em.install() {
pmodules.install() {
cd "${MODULE_SRCDIR}"
install -m 0755 -d "${PREFIX}/bin"
install -m 0755 unison "${PREFIX}/bin"
}
em.add_to_family 'System'
em.set_docfiles 'BUGS.txt' 'CONTRIB' 'COPYING' 'NEWS' 'README'
#em.set_build_dependencies "${COMPILER}"
em.make_all
pmodules.add_to_group 'System'
pmodules.set_docfiles 'BUGS.txt' 'CONTRIB' 'COPYING' 'NEWS' 'README'
#pmodules.set_build_dependencies "${COMPILER}"
pmodules.make_all
# Local Variables:
# mode: sh