Apple Lossless Codec and Utility with Autotools. Fork of https://github.com/mikebrady/alac
Go to file
2016-07-04 09:19:35 +01:00
codec Add in the alac.pc/in file 2016-07-03 21:17:39 +01:00
convert-utility Initial set of autotools files 2016-07-03 19:44:12 +01:00
ALACMagicCookieDescription.txt Initial check in 2011-10-26 19:31:06 +00:00
AUTHORS Initial set of autotools files 2016-07-03 19:44:12 +01:00
ChangeLog Initial set of autotools files 2016-07-03 19:44:12 +01:00
configure.ac Add in the alac.pc/in file 2016-07-03 21:17:39 +01:00
COPYING Initial set of autotools files 2016-07-03 19:44:12 +01:00
LICENSE Initial check in 2011-10-26 19:54:09 +00:00
Makefile.am Initial set of autotools files 2016-07-03 19:44:12 +01:00
NEWS Initial set of autotools files 2016-07-03 19:44:12 +01:00
README Initial set of autotools files 2016-07-03 19:44:12 +01:00
README.md Update README.md 2016-07-04 09:19:35 +01:00
ReadMe.txt Initial check in 2011-10-26 19:31:06 +00:00

ALAC

This repository is a clone of the Apple Lossless Audio Codec at http://alac.macosforge.org with added files to enable it to be built using GNU autotools. Use it to build and install the Apple Lossless Audio Codec (ALAC) library libalac.

The added files are based on work done by Tiancheng "Timothy" Gu (@TimothyGu) in his repository https://github.com/TimothyGu/alac/ with some changes. Many thanks to him for his work. This respository is bare-bones it does not cater for Visual Studio nor does it deal with Debian packaging. Similarly, it does not install man pages.

###Download, build, install

To download, build and install libalac do the following:

  • Clone the repository and cd into the folder:
$ git clone https://github.com/mikebrady/alac.git
$ cd alac
  • Configure the build and make the library:
$ autoreconf -fi
$ ./configure
$ make
  • Install the library:
$ sudo make install
  • Finally, to make the library visible during compilation, you need to tell ld to catalogue it:
$ sudo ldconfig -v

That's it.