First pass of .oe cleanups.
[openembedded.git] / lsof / lsof_4.70.oe
1 SRC_URI = ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_${PV}.tar.gz
2 LOCALSRC = "file://${WORKDIR}/lsof_${PV}/lsof_${PV}_src.tar"
3 S = "${WORKDIR}/lsof_${PV}_src"
4
5 python do_unpack () {
6         oe.build.exec_func('base_do_unpack', d)
7         src_uri = oe.data.getVar('SRC_URI', d)
8         oe.data.setVar('SRC_URI', '${LOCALSRC}', d)
9         oe.build.exec_func('base_do_unpack', d)
10         oe.data.setVar('SRC_URI', src_uri, d)
11 }
12
13 do_configure () {
14         echo PWD is $PWD
15         ./Configure ${TARGET_OS}
16 }
17
18 export I=${STAGING_INCDIR}
19 export L=${STAGING_INCDIR}
20 export EXTRA_OEMAKE=
21
22 do_compile () {
23         oe_runmake 'CC=${CC}' 'CFGL=${LDFLAGS} -L./lib -llsof' 'DEBUG=' 'INCL=${CFLAGS}'
24 }
25
26 do_install () {
27         install -d ${D}/${sbindir} ${D}/${mandir}/man8
28         install -m 4755 lsof ${D}/${sbindir}/lsof
29         install -m 0644 lsof.8 ${D}/${mandir}/man8/lsof.8
30 }