Advertisement
Guest User

recipe with nested repo

a guest
Jun 13th, 2025
39
0
3 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.96 KB | Software | 0 0
  1. DESCRIPTION = "SDR control program"
  2. HOMEPAGE = ""
  3. LICENSE = "GPLv3"
  4. LICENSE_FILE = "LICENSE"
  5. SECTION = "app"
  6. DEPENDS = ""
  7. LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-3.0;md5=c79ff39f19dfec6d293b95dea7b07891"
  8. HOMEPAGE = "https://github.com/open-sdr/openwifi"
  9.  
  10. # SRC_URI = "https://github.com/open-sdr/openwifi.git;branch=master;protocol=https"
  11. # SRC_URI = "https://github.com/open-sdr/openwifi.git;branch=master"
  12. SRC_URI = "git://github.com/open-sdr/openwifi.git;branch=master;protocol=https"
  13. SRCREV ="e2f25882450bfbf231dde0ef9cf96f23f8273eb3"
  14.  
  15. S = "${WORKDIR}"
  16. #S = "${WORKDIR}/git/user_space/sdrctl_src"
  17.  
  18. DEPENDS += "libnl"
  19. RDEPENDS:${PN} += "libnl"
  20.  
  21. SRC_URI[sha256sum] = "692050ad9df550eae75e8fcdd3897f99e26fbbb423aef815d182e90c716ae8fe"
  22. BB_STRICT_CHECKSUM = "0"
  23.  
  24. do_compile() {
  25.         # cd user_space/sdrctl_src
  26.         oe_runmake -C ${S}/git/user_space/sdrctl_src
  27. }
  28.  
  29. #do_configure() {
  30. #
  31. #}
  32.  
  33. do_install() {
  34.         oe_runmake install
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement