aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/cdump/cdump-native.bb
blob: 3b14884a3352aea46c7bdd611c463802244d54e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
DESCRIPTION = "Cdump tool from abiword - needed for building abiword"
inherit native

S = "${WORKDIR}/abiword-2.0.12/"
SRC_URI = "file://abiword-2.0.12/cdump.c"

do_compile() {
       gcc -o cdump cdump.c
}

do_stage() {
	install -m 755 cdump ${STAGING_BINDIR}
}

do_install() {
	true
}