Created
February 17, 2013 14:05
-
-
Save masbog/cc036e8f6831dcfe4117 to your computer and use it in GitHub Desktop.
cara install TagLib di mac os (How To install TagLib on Mac OS)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd ~/source | |
$ wget http://taglib.github.com/releases/taglib-1.8.tar.gz | |
$ tar -zxvf taglib-1.8.tar.gz | |
$ cd taglib-1.8 | |
$ 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment