diff options
author | Sören Brinkmann <soeren.brinkmann@gmail.com> | 2015-06-02 10:46:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-03 16:38:49 +0100 |
commit | 8313d6e30d6d1723e51081534a3b0d06fad28dfe (patch) | |
tree | ca81a6e44bf6f74ccf8fc3f9a395097a2fda04e6 /meta/recipes-devtools | |
parent | 87d6717fa8a5006b44df481ceedb5706037d3ba1 (diff) | |
download | poky-8313d6e30d6d1723e51081534a3b0d06fad28dfe.tar.gz |
dosfstools: Add recipe for v3.0.28
Add a recipe for building the latest (as of today) version of
dosfstools.
(From OE-Core rev: c91ffdb8fff4a62ccb80196a3d735e4b9a3056a3)
Signed-off-by: Sören Brinkmann <soeren.brinkmann@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/dosfstools/dosfstools_3.0.28.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-devtools/dosfstools/dosfstools_3.0.28.bb b/meta/recipes-devtools/dosfstools/dosfstools_3.0.28.bb new file mode 100644 index 0000000000..ac131cb72a --- /dev/null +++ b/meta/recipes-devtools/dosfstools/dosfstools_3.0.28.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | # dosfstools OE build file | ||
2 | # Copyright (C) 2004-2006, Advanced Micro Devices, Inc. All Rights Reserved | ||
3 | # Copyright (C) 2015, Sören Brinkmann <soeren.brinkmann@gmail> All Rights Reserved | ||
4 | # Released under the MIT license (see packages/COPYING) | ||
5 | SUMMARY = "DOS FAT Filesystem Utilities" | ||
6 | HOMEPAGE = "https://github.com/dosfstools/dosfstools" | ||
7 | |||
8 | SECTION = "base" | ||
9 | LICENSE = "GPLv3" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
11 | |||
12 | SRC_URI = "https://github.com/dosfstools/dosfstools/releases/download/v3.0.28/dosfstools-3.0.28.tar.xz" | ||
13 | SRC_URI[md5sum] = "6a047a6c65186b9ebb1853709adb36db" | ||
14 | SRC_URI[sha256sum] = "ee95913044ecf2719b63ea11212917649709a6e53209a72d622135aaa8517ee2" | ||
15 | |||
16 | FILES_${PN} = "${base_sbindir}" | ||
17 | FILES_${PN}-doc = "${mandir} ${docdir}" | ||
18 | |||
19 | do_install () { | ||
20 | oe_runmake "PREFIX=${D}${prefix}" "SBINDIR=${D}${base_sbindir}" \ | ||
21 | "MANDIR=${D}${mandir}" "DOCDIR=${D}${docdir}" install | ||
22 | } | ||
23 | |||
24 | BBCLASSEXTEND = "native" | ||