blob: 8de1bdd14f35d4380e3be458d19b0ddb4baa4b4c (
plain) (
tree)
|
|
#!/bin/bash
fetch_source() {
:
}
build() {
for BIN in $REQUIRED_BINARIES; do
BIN_LOCATION=$(which ${BIN})
if [ ! -z ${BIN_LOCATION} -a -e ${BIN_LOCATION} ]; then
tarcopy "$(get_link_chain ${BIN_LOCATION})" "${MODULE_BUILD_DIR}"
else
perror "'${BIN}' not found on the system."
fi
done
COPYLIST="list_dpkg_output"
list_packet_files > "$COPYLIST"
tarcopy "$(cat "${COPYLIST}" | sort -u)" "${MODULE_BUILD_DIR}"
}
post_copy() {
:
}
|