Menu

Compiling Helper Libraries

Table of Content

Prerequisite

The only requirements are you did the steps in previous blog post Installing Dependencies. This page completes Other dependencies and is according to linuxfromscratch.org

libxml2-2.9.1

XML library supporting XPath.

./configure --prefix=/usr --disable-static --with-history &&  
make  
make install

libsndfile-1.0.25

Free sound file format library.

./configure --prefix=/usr --disable-static &&  
make  
make install

libao-1.2.0

Cross-platform audio output library.

./configure --prefix=/usr &&  
make  
make install &&  
install -v -m644 README /usr/share/doc/libao-1.2.0

libinstpatch-1.0.0

Library supporting Soundfont2 and other instrument's container formats.

./configure --prefix=/usr &&  
make  
make install

alsa-lib-1.0.27.2

Advanced Linux Sound Architecture output library.

./configure &&  
make  
make install

libuuid-1.0.2

Universal Unique Identifier library.

./configure &&  
make  
make install

link

Posted by SourceForge Robot 2014-07-28

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.