How can I compile libsndfile under ubuntu 11.04 ?

Should I use g++ or something?

link|improve this question

69% accept rate
1  
Maybe this question is a better fit for the Unix/Linux or Ask Ubuntu stack exchanges? – Cold Hawaiian Jun 19 '11 at 7:08
1  
@Keoki You're right, this question sits on the border of a few areas, but since it involves a programming tool (make), IMO it's on topic here – jonsca Jun 19 '11 at 7:17
feedback

2 Answers

up vote 4 down vote accepted
sudo apt-get build-dep  libsndfile
apt-get source libsndfile

Will install all required dependencies for building, then (the second line) will fetch you a buildable source tree and unpack it. You can then build it using:

cd libsndfile
dpkg-buildpackage

Or instead of ALL that you can just install it if you don't need to fiddle with sources:

sudo apt-get install libsndfile

you may also want libsndfile-dev, depending on what you're doing with that library (see apt-cache show libsndfile-dev)

link|improve this answer
Better than the raw source, I agree! The Ubuntu magic dohickey doesn't require any typing at all, though. :) – jonsca Jun 19 '11 at 7:21
feedback

Unzip the archive to a directory, switch into that directory, type

 ./configure
 make
 make install

Or the easiest way to do get the binaries (if you don't need any special configuring for your particular set up) is to get it via the Ubuntu magic program getter (look under system files for the library). That way it will also get the dependencies for you, I believe.

link|improve this answer
Looks promising! I used apt-get to install libsndfile. How can I find the Makefile? – Shawn Jun 19 '11 at 7:20
@Shawn Double check with Mr. Sinelaw's answer, but you may be all set (and not need to compile anything) – jonsca Jun 19 '11 at 7:22
1  
+1 - this is the canonical answer for "how do I compile X in Linux" :) – Merlyn Morgan-Graham Jun 19 '11 at 7:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.