diff options
-rw-r--r-- | recipes/build-tools/orc-tool.recipe (renamed from recipes/build-tools/orc.recipe) | 10 | ||||
-rw-r--r-- | recipes/orc.recipe | 9 |
2 files changed, 17 insertions, 2 deletions
diff --git a/recipes/build-tools/orc.recipe b/recipes/build-tools/orc-tool.recipe index 3ba4e32c..4e5ef6b3 100644 --- a/recipes/build-tools/orc.recipe +++ b/recipes/build-tools/orc-tool.recipe @@ -3,9 +3,17 @@ class Recipe(recipe.Recipe): name = 'orc-tool' - version = '0.4.28' + version = '0.4.29' + + stype = SourceType.TARBALL + # These properties are only used when stype is TARBALL + url = 'https://gstreamer.freedesktop.org/src/orc/orc-%(version)s.tar.xz' + tarball_checksum = '4f8901f9144b5ec17dffdb33548b5f4c7f8049b0d1023be3462cdd64ec5a3ab2' + tarball_dirname = 'orc-%(version)s' + # These properties are only used when stype is GIT remotes = {'origin': 'https://gitlab.freedesktop.org/gstreamer/orc.git'} commit = 'origin/master' + btype = BuildType.MESON licenses = [{License.BSD_like: ['COPYING']}] deps = ['meson'] diff --git a/recipes/orc.recipe b/recipes/orc.recipe index 8a8d1821..d41f21dc 100644 --- a/recipes/orc.recipe +++ b/recipes/orc.recipe @@ -3,9 +3,16 @@ from cerbero.tools.libtool import LibtoolLibrary class Recipe(recipe.Recipe): name = 'orc' - version = '0.4.28' + version = '0.4.29' + + stype = SourceType.TARBALL + # These properties are only used when stype is TARBALL + url = 'https://gstreamer.freedesktop.org/src/orc/orc-%(version)s.tar.xz' + tarball_checksum = '4f8901f9144b5ec17dffdb33548b5f4c7f8049b0d1023be3462cdd64ec5a3ab2' + # These properties are only used when stype is GIT remotes = {'origin': 'https://gitlab.freedesktop.org/gstreamer/orc.git'} commit = 'origin/master' + btype = BuildType.MESON licenses = [{License.BSD_like: ['COPYING']}] meson_options = {'benchmarks': 'disabled', 'tests': 'disabled', |