diff options
Diffstat (limited to 'recipes-devtools/go/go-capability_git.bb')
-rw-r--r-- | recipes-devtools/go/go-capability_git.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-devtools/go/go-capability_git.bb b/recipes-devtools/go/go-capability_git.bb new file mode 100644 index 00000000..6f5b833a --- /dev/null +++ b/recipes-devtools/go/go-capability_git.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | DESCRIPTION = "Utilities for manipulating POSIX capabilities in Go." | ||
2 | HOMEPAGE = "https://github.com/syndtr/gocapability" | ||
3 | SECTION = "devel/go" | ||
4 | LICENSE = "BSD-2-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=a7304f5073e7be4ba7bffabbf9f2bbca" | ||
6 | |||
7 | PR = "r0" | ||
8 | SRCNAME = "gocapability" | ||
9 | |||
10 | PKG_NAME = "github.com/syndtr/${SRCNAME}" | ||
11 | SRC_URI = "git://${PKG_NAME}.git" | ||
12 | |||
13 | SRCREV = "3c85049eaeb429febe7788d9c7aac42322a377fe" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | do_install() { | ||
18 | install -d ${D}${prefix}/local/go/src/${PKG_NAME} | ||
19 | cp -r ${S}/* ${D}${prefix}/local/go/src/${PKG_NAME}/ | ||
20 | } | ||
21 | |||
22 | SYSROOT_PREPROCESS_FUNCS += "go_mux_sysroot_preprocess" | ||
23 | |||
24 | go_mux_sysroot_preprocess () { | ||
25 | install -d ${SYSROOT_DESTDIR}${prefix}/local/go/src/${PKG_NAME} | ||
26 | cp -r ${D}${prefix}/local/go/src/${PKG_NAME} ${SYSROOT_DESTDIR}${prefix}/local/go/src/$(dirname ${PKG_NAME}) | ||
27 | } | ||
28 | |||
29 | FILES_${PN} += "${prefix}/local/go/src/${PKG_NAME}/*" | ||