summaryrefslogtreecommitdiffstats
path: root/core/modules/screen-standby/module.build
blob: 8de1bdd14f35d4380e3be458d19b0ddb4baa4b4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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() {
	:
}