System/unison/build: file moved

This commit is contained in:
2015-02-27 16:58:43 +01:00
parent ef6875a3e5
commit c4003e437d

29
scripts/System/unison/build Executable file
View File

@@ -0,0 +1,29 @@
#!/bin/bash
source "$(dirname $0)/../../../lib/libem.bash"
function em.configure() {
:
}
function em.build() {
cd "${MODULE_SRCDIR}"
make
}
function em.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
# Local Variables:
# mode: sh
# sh-basic-offset: 8
# tab-width: 8
# End: