summaryrefslogtreecommitdiffstats
path: root/core/modules/parse-edid/module.build
blob: e77f42570e39f5c5401bbbf711c105e7c09e6806 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

fetch_source() {
	:
}

build() {
	mkdir -p "$MODULE_BUILD_DIR/opt/openslx/bin"
	# Make read-edid
	gcc -o "${MODULE_BUILD_DIR}/opt/openslx/bin/parse-edid" "${MODULE_DIR}/source/parse-edid/parse-edid.c" || perror "Compiling parse-edid failed."
}
post_copy() {
	:
}