Thursday, May 16, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 612  / 2 Years ago, sun, october 23, 2022, 4:06:27

I'm trying to install openal-soft on Ubuntu Focal, but without luck.


This is the package I would like to install:


https://packages.ubuntu.com/source/focal/openal-soft


What I tried:


sudo apt update
sudo add-apt-repository universe
sudo apt install openal-soft

Am I missing something?


More From » apt

 Answers
2

You are trying to install binary package using name of its source package. They are different things. Source package has openal-soft name, during its compilation the following binary packages are produced:




  • libopenal-data – Software implementation of the OpenAL audio API (data files)

  • libopenal-dev – Software implementation of the OpenAL audio API (development files)

  • libopenal1 – Software implementation of the OpenAL audio API (shared library)

  • makehrtf – HRTF Processing and Composition Utility

  • openal-info – Informational utility for the OpenAL audio API



So reproducible way to install binary packages of OpenAL is the following:


sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install libopenal-dev makehrtf openal-info

and then you can start developing software using this library.


[#805] Sunday, October 23, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
piscen

Total Points: 134
Total Questions: 117
Total Answers: 133

Location: Indonesia
Member since Wed, Jul 7, 2021
3 Years ago
piscen questions
Wed, May 17, 23, 01:44, 1 Year ago
Thu, Nov 24, 22, 19:09, 2 Years ago
Mon, Mar 6, 23, 02:42, 1 Year ago
Wed, May 26, 21, 05:44, 3 Years ago
;