Difference between revisions of "ALSA"

From HaskellWiki
Jump to navigation Jump to search
(moved repositories)
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
 
Related packages are
 
Related packages are
 
* {{HackagePackage|id=midi-alsa}}: Conversion between data types of the <code>alsa</code> package and the <code>midi</code> package
 
* {{HackagePackage|id=midi-alsa}}: Conversion between data types of the <code>alsa</code> package and the <code>midi</code> package
  +
  +
  +
== Troubleshooting ==
  +
  +
If you get a message like
  +
  +
Configuring alsa-core-0.5.0.1...
  +
Cabal-simple_mPHDZzAJ_2.2.0.1_ghc-8.4.3: The pkg-config package 'alsa' version
  +
>=1.0.14 is required but it could not be found.
  +
  +
then you need to install the alsa development packages. On Debian or Ubuntu, do
  +
  +
sudo apt install libasound2-dev
   
 
[[Category:Music]]
 
[[Category:Music]]

Latest revision as of 08:05, 18 March 2019

The Advanced Linux Sound Architecture is addressed by currently three different projects.

Related packages are

  • midi-alsa: Conversion between data types of the alsa package and the midi package


Troubleshooting

If you get a message like

   Configuring alsa-core-0.5.0.1...
   Cabal-simple_mPHDZzAJ_2.2.0.1_ghc-8.4.3: The pkg-config package 'alsa' version
   >=1.0.14 is required but it could not be found.

then you need to install the alsa development packages. On Debian or Ubuntu, do

   sudo apt install libasound2-dev