# SHORT DESC: AAC Encoder
# LONG DESC: FAAC is an AAC Encoder. It supports several MPEG-4 object types (LC, Main, LTP, HE AAC, PS) and file formats (ADTS AAC, raw AAC, MP4), multichannel and gapless en/decoding as well as MP4 metadata tags. The codecs are compatible with standard-compliant audio applications using one or more of these profiles.
# WTF ? MS-DOS style line terminators in a configure script
cat configure.in | fromdos > configure.in.new
mv configure.in.new configure.in
autoreconf -vif
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir="$libdir" || exit 1
sed 's@ @ @g' Makefile > Makefile.1
mv Makefile.1 Makefile
make && \
${installmonitor} make install || exit 1
# DEPENDED ON BY: ffmpeg
|