Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save trevorsheridan/1948299 to your computer and use it in GitHub Desktop.
Save trevorsheridan/1948299 to your computer and use it in GitHub Desktop.
Installing TagLib 1.7.1 on Mac OSX Lion
$ cd ~/source
$ ftp http://developer.kde.org/~wheeler/files/src/taglib-1.7.1.tar.gz
$ tar -zxvf taglib-1.7.1.tar.gz
$ rm -r taglib-1.7.1.tar.gz
$ cd taglib-1.7.1
$ cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.6 \
-DCMAKE_OSX_ARCHITECTURES="i386;x86_64" \
-DENABLE_STATIC=ON \
-DCMAKE_INSTALL_PREFIX="/usr/local"
$ make
$ sudo make install
@shrayasr
Copy link

THANK YOU.

@ComicsNights
Copy link

hey thank you it was useful !

@daslicht
Copy link

Thank You !
Most recent version of taglib can be found here: http://taglib.github.io

@ops-gaurav
Copy link

I am getting the following error
This option is no longer available, use BUILD_SHARED_LIBS instead

@yarkm13
Copy link

yarkm13 commented Sep 5, 2016

You can install taglib from homebrew:
$ brew install taglib

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment