summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/go-examples/go-helloworld_0.1.bb
blob: 930c57df959f7f787bbd35d23ea66652b1213c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require go-examples.inc

SRC_URI += " \
  file://helloworld.go \
"

do_compile() {
	go build helloworld.go
}

do_install() {
	install -D -m 0755 ${S}/helloworld ${D}${bindir}/helloworld
}