# SHORT DESC: Multimedia framework based on the MPEG-4 Systems Standard (ISO/IEC 14496-1) in ANSI C.
# LONG DESC: GPAC is a multimedia framework based on the MPEG-4 Systems standard (ISO/IEC 14496-1) developed from scratch in ANSI C. The original development goal is to provide a clean (a.k.a. readable by as many people as possible), small and flexible alternative to the MPEG-4 Systems reference software (known as IM1 and distributed in ISO/IEC 14496-5). The MPEG-4 Reference software is indeed a very large piece of software, designed to verify the standard rather than provide a small, production-stable software.
# COMPILE REQUIREMENT: xvidcore
# COMPILE REQUIREMENT: faad2
# COMPILE REQUIREMENT: faac
# COMPILE REQUIREMENT: wxWidgets
chmod +x configure
./configure --prefix=/usr --use-ffmpeg=no && \
make && \
make install install-lib || exit 1
mv /usr/lib/libgpac.* /usr/lib/libgpac-* "${libdir}" >/dev/null 2>&1
exit 0
|