diff options
Diffstat (limited to 'recipes-devtools/go/compose-file_git.bb')
-rw-r--r-- | recipes-devtools/go/compose-file_git.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/recipes-devtools/go/compose-file_git.bb b/recipes-devtools/go/compose-file_git.bb new file mode 100644 index 00000000..bcf8c3d2 --- /dev/null +++ b/recipes-devtools/go/compose-file_git.bb | |||
@@ -0,0 +1,41 @@ | |||
1 | DESCRIPTION = "Parser for the Compose file format (version 3)" | ||
2 | HOMEPAGE = "https://github.com/aanand/compose-file" | ||
3 | SECTION = "devel/go" | ||
4 | LICENSE = "Apache-2.0" | ||
5 | LIC_FILES_CHKSUM = "file://src/${PKG_NAME}/LICENSE;md5=9cd86830b557232ce55e2a6b47387471" | ||
6 | |||
7 | SRCNAME = "compose-file" | ||
8 | |||
9 | PKG_NAME = "github.com/aanand/${SRCNAME}" | ||
10 | SRC_URI = "git://${PKG_NAME}.git;destsuffix=git/src/${PKG_NAME}" | ||
11 | |||
12 | SRCREV = "a3e58764f50597b6217fec07e9bff7225c4a1719" | ||
13 | PV = "3.0+git${SRCPV}" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | # NO-OP the do compile rule because this recipe is source only. | ||
18 | do_compile() { | ||
19 | } | ||
20 | |||
21 | do_install() { | ||
22 | install -d ${D}${prefix}/local/go/src/${PKG_NAME} | ||
23 | for j in $(cd ${S} && find src/${PKG_NAME} -name "*.go"); do | ||
24 | if [ ! -d ${D}${prefix}/local/go/$(dirname $j) ]; then | ||
25 | mkdir -p ${D}${prefix}/local/go/$(dirname $j) | ||
26 | fi | ||
27 | cp $j ${D}${prefix}/local/go/$j | ||
28 | done | ||
29 | cp -r ${S}/src/${PKG_NAME}/LICENSE ${D}${prefix}/local/go/src/${PKG_NAME}/ | ||
30 | } | ||
31 | |||
32 | SYSROOT_PREPROCESS_FUNCS += "go_compose_file_sysroot_preprocess" | ||
33 | |||
34 | go_compose_file_sysroot_preprocess () { | ||
35 | install -d ${SYSROOT_DESTDIR}${prefix}/local/go/src/${PKG_NAME} | ||
36 | cp -r ${D}${prefix}/local/go/src/${PKG_NAME} ${SYSROOT_DESTDIR}${prefix}/local/go/src/$(dirname ${PKG_NAME}) | ||
37 | } | ||
38 | |||
39 | FILES_${PN} += "${prefix}/local/go/src/${PKG_NAME}/*" | ||
40 | |||
41 | CLEANBROKEN = "1" \ No newline at end of file | ||