# SliTaz package receipt. PACKAGE="faac" VERSION="1.28" CATEGORY="multimedia" SHORT_DESC="FAAC is an open source MPEG-4 and MPEG-2 AAC encoder." MAINTAINER="paul@slitaz.org" DEPENDS="gcc-lib-base" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.audiocoding.com" WGET_URL="$SF_MIRROR/faac/$TARBALL" TAGS="mp4 mpeg encoder" # Rules to configure and make the package. compile_rules() { cd $src/common/mp4v2 patch -p0 < $stuff/gcc44.patch || return 1 cd ../.. ./configure \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$PWD/_pkg install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/bin $fs/usr/lib cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/lib/*.so* $fs/usr/lib }