Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gazebo PKGBUILD to include gazebosim/gazebo-classic#3373 , to … #97

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions gazebo/.SRCINFO
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ pkgbase = gazebo
optdepends = simbody: Simbody support
optdepends = urdfdom: Load URDF files
source = gazebo-11.14.0.tar.gz::https://github.com/gazebosim/gazebo-classic/archive/gazebo11_11.14.0.tar.gz
source = graphviz-10.patch::https://github.com/gazebosim/gazebo-classic/pull/3373.patch
sha256sums = 6b63d857399ba08190c331b545d24e8e3e308b840ff051bbf39e87879e37af50
sha256sums = 60e40900a03308f52dfdb160e36066b53b9af8b5ee1174810d21148bc44ff31f

pkgname = gazebo
11 changes: 9 additions & 2 deletions gazebo/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,18 @@ optdepends=('bullet: Bullet support'
'urdfdom: Load URDF files')
makedepends=('cmake' 'doxygen' 'ruby-ronn')
install="${pkgname}.install"
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gazebosim/gazebo-classic/archive/${pkgname}11_$pkgver.tar.gz")
sha256sums=('6b63d857399ba08190c331b545d24e8e3e308b840ff051bbf39e87879e37af50')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gazebosim/gazebo-classic/archive/${pkgname}11_$pkgver.tar.gz"
"graphviz-10.patch::https://github.com/gazebosim/gazebo-classic/pull/3373.patch")
sha256sums=('6b63d857399ba08190c331b545d24e8e3e308b840ff051bbf39e87879e37af50'
'60e40900a03308f52dfdb160e36066b53b9af8b5ee1174810d21148bc44ff31f')

_pkgname=gazebo-classic

prepare() {
cd "${srcdir}/${_pkgname}-${pkgname}11_$pkgver"
patch -Np1 -i ../graphviz-10.patch
}

build() {
cd "${srcdir}/${_pkgname}-${pkgname}11_$pkgver"

Expand Down