aboutsummaryrefslogtreecommitdiffstats
path: root/pad/pad-native.oe
blob: e7b53cd59780ff8ee9d851530a4fde29f583684e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SECTION = "console/utils"
DESCRIPTION = "Console utility for padding a file (filling with 0 to reach a specified length)"
FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/pad"
SRC_URI = "file://pad.c"

inherit native

do_compile() {
	cp ${WORKDIR}/pad.c .
	${CC} -I. -o pad pad.c
}

do_stage() {
	install -m 0755 pad ${STAGING_BINDIR}/
}