Skip to content

Commit

Permalink
Fix autotick bot (#7)
Browse files Browse the repository at this point in the history
automerged PR by conda-forge/automerge-action
  • Loading branch information
github-actions[bot] authored Feb 4, 2023
2 parents bee2477 + 10365ff commit ef2f4d5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{% set component_name = "plugin" %}
{% set repo_name = "gz-" + component_name %}
{% set version = "2.0.0" %}
{% set major_version = version.split('.')[0] %}
{% set version = "2_2.0.0" %}
{% set version_package = version.split('_')[1] %}
{% set major_version = version.split('_')[0] %}
{% set name = repo_name + major_version %}
{% set component_version = component_name + major_version %}
{% set cxx_name = "lib" + name %}

package:
name: {{ name }}
version: {{ version }}
version: {{ version_package }}

source:
- url: https://github.com/gazebosim/{{ repo_name }}/archive/{{ repo_name }}{{ major_version }}_{{ version }}.tar.gz
- url: https://github.com/gazebosim/{{ repo_name }}/archive/{{ repo_name }}{{ version }}.tar.gz
sha256: 4a80ceffcfa41c83f0c39678a84c67a873fcafee16026f7a96d58bb08b25641b

build:
Expand Down

0 comments on commit ef2f4d5

Please sign in to comment.