summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-extended/dmidecode/dmidecode_2.11.bb26
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes-extended/dmidecode/dmidecode_2.11.bb b/recipes-extended/dmidecode/dmidecode_2.11.bb
new file mode 100644
index 00000000..65496ae9
--- /dev/null
+++ b/recipes-extended/dmidecode/dmidecode_2.11.bb
@@ -0,0 +1,26 @@
1DESCRIPTION = "DMI (Desktop Management Interface) table related utilities"
2HOMEPAGE = "http://www.nongnu.org/dmidecode/"
3LICENSE = "GPLv2"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833"
5SECTION = "console/tools"
6
7PR = "r0"
8
9SRC_URI = "http://download.savannah.gnu.org/releases/${PN}/${PN}-${PV}.tar.gz"
10
11SRC_URI[md5sum] = "9fddbbc3e330bee5950b8b5d424a57cb"
12SRC_URI[sha256sum] = "d99ee210ecbd6caff2cf6d95dec6d88818c16cec1a08ed0963fd8702f6af8b59"
13
14EXTRA_OEMAKE =+ "prefix=${prefix} \
15 includedir=${includedir} \
16 libdir=${libdir} \
17 sbindir=${sbindir} \
18 DESTDIR=${D} \
19 'CC=${CC}' \
20 'CFLAGS=${CFLAGS}' \
21 "
22
23do_install() {
24 oe_runmake install
25 install -d ${D}${sbindir}
26}