1
0
mirror of https://git.yoctoproject.org/poky synced 2026-07-27 07:27:12 +00:00

glide.bbclass: Add class to easy Glide use

To use 'glide' this class does the integration and reduces code
duplication.

(From OE-Core rev: e0dbcdc2ca0b05b6b062a0ec1496204bb2122fbf)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Otavio Salvador
2018-03-16 16:48:41 -03:00
committed by Richard Purdie
parent 3727598586
commit e317745665
+9
View File
@@ -0,0 +1,9 @@
# Handle Glide Vendor Package Management use
#
# Copyright 2018 (C) O.S. Systems Software LTDA.
DEPENDS_append = " glide-native"
do_compile_prepend() {
( cd ${B}/src/${GO_IMPORT} && glide install )
}