Skip to content

Commit 6cfeb8b

Browse files
committed
make: add install task for Ubuntu Manic Minotaur using @chewxy PR #1157
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent f24cda2 commit 6cfeb8b

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ RPMS=cmake curl wget git gtk2-devel libpng-devel libjpeg-devel libtiff-devel tbb
2121
DEBS=unzip wget build-essential cmake curl git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libdc1394-22-dev libharfbuzz-dev libfreetype6-dev
2222
DEBS_BOOKWORM=unzip wget build-essential cmake curl git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev libtbbmalloc2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libharfbuzz-dev libfreetype6-dev
2323
DEBS_UBUNTU_JAMMY=unzip wget build-essential cmake curl git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libdc1394-dev libharfbuzz-dev libfreetype6-dev
24+
DEBS_UBUNTU_MANTIC=unzip wget build-essential cmake curl git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev libtbbmalloc2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libdc1394-dev libharfbuzz-dev libfreetype6-dev
2425
DEBS_UBUNTU_NUMBAT=unzip wget build-essential cmake curl git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev libtbb-dev libjpeg-dev libpng-dev libtiff-dev libdc1394-dev libharfbuzz-dev libfreetype-dev
2526
JETSON=build-essential cmake git unzip pkg-config libjpeg-dev libpng-dev libtiff-dev libavcodec-dev libavformat-dev libswscale-dev libgtk2.0-dev libcanberra-gtk* libxvidcore-dev libx264-dev libgtk-3-dev libtbb2 libtbb-dev libdc1394-dev libv4l-dev v4l-utils libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libavresample-dev libvorbis-dev libxine2-dev libfaac-dev libmp3lame-dev libtheora-dev libopencore-amrnb-dev libopencore-amrwb-dev libopenblas-dev libatlas-base-dev libblas-dev liblapack-dev libeigen3-dev gfortran libhdf5-dev protobuf-compiler libprotobuf-dev libgoogle-glog-dev libgflags-dev
2627

@@ -39,6 +40,9 @@ ifneq ($(shell which apt-get 2>/dev/null),)
3940
ifneq ($(shell cat /etc/os-release 2>/dev/null | grep "Jammy Jellyfish"),)
4041
distro_deps=deps_ubuntu_jammy
4142
endif
43+
ifneq ($(shell cat /etc/os-release 2>/dev/null | grep "Mantic Minotaur"),)
44+
distro_deps=deps_ubuntu_mantic
45+
endif
4246
ifneq ($(shell cat /etc/os-release 2>/dev/null | grep "Noble Numbat"),)
4347
distro_deps=deps_ubuntu_numbat
4448
endif
@@ -71,6 +75,10 @@ deps_ubuntu_jammy:
7175
sudo apt-get -y update
7276
sudo apt-get -y install $(DEBS_UBUNTU_JAMMY)
7377

78+
deps_ubuntu_mantic:
79+
sudo apt-get -y update
80+
sudo apt-get -y install $(DEBS_UBUNTU_MANTIC)
81+
7482
deps_ubuntu_numbat:
7583
sudo apt-get -y update
7684
sudo apt-get -y install $(DEBS_UBUNTU_NUMBAT)

0 commit comments

Comments
 (0)