Skip to content

Commit

Permalink
w
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Jun 23, 2024
1 parent ad49ad3 commit c59e177
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions docker/dev/v6.14/Dockerfile.archlinux-min
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,41 @@ RUN yay -Syu --needed --noconfirm \
# ==============================================================================
# DART required dependencies
# ==============================================================================

# octomap
RUN git clone https://github.com/OctoMap/octomap.git && \
cd octomap && \
mkdir build && \
cd build && \
cmake .. && \
make && \
make install && \
cd ../.. && \
rm -rf octomap

# Create a dummy package for octomap
RUN mkdir -p /tmp/dummy-octomap/aur/dummy-octomap && \
cd /tmp/dummy-octomap/aur/dummy-octomap && \
echo " \
# Maintainer: Jeongseok Lee <[email protected]> \n\
pkgname=dummy-octomap \n\
pkgver=1.9.8 \n\
pkgrel=1 \n\
pkgdesc='A dummy package to satisfy octomap dependency' \n\
arch=('any') \n\
provides=('octomap') \n\
conflicts=('octomap') \n\
source=() \n\
noextract=() \n\
md5sums=('SKIP') \n\
package() { \n\
: \n\
} \n\
" > PKGBUILD && \
makepkg -si --noconfirm && \
cd / && \
rm -rf /tmp/dummy-octomap

RUN yay -Syu --needed --noconfirm \
assimp eigen fcl fmt

Expand Down

0 comments on commit c59e177

Please sign in to comment.