Skip to content

TEMPLATE component_recipe - GitHub source

Template: component_recipe.json - GitHub

{
  "<component name>": [
    {
      "source_url": "https://github.com/component-dev/component-name/releases/download/{VERSION}/*.AppImage",
      "source_type": "github-release",
      "version": "$COMPONENT_DESIRED_VERSION",
      "extraction_type": "appimage",
      "assets": [
        {
          "type": "dir",
          "source": "usr/bin",
          "dest": "bin"
        }
      ],
      "libs": [
        {
          "library": "runtimeLib.so.6",
          "runtime_name": "org.kde.Platform",
          "runtime_version": "6.9",
          "dest": "shared-libs"
        },
        {
          "library": "specificComponentLib.so.6",
          "source": "usr/lib",
          "dest": "lib"
        }
      ],
      "extras": [
        {
          "type": "dir",
          "source": "$PWD",
          "dest": "$COMPONENT_ARTIFACT_ROOT"
        },
        {
          "type": "symlink",
          "source": "/var/config/copmponent",
          "dest": "$COMPONENT_ARTIFACT_ROOT/portable"
        },
        {
          "type": "create",
          "dest": "$COMPONENT_ARTIFACT_ROOT/portable.txt"
        }
      ]
    }
  ]
}