fcb7da800b
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or "automake14". Also, we don't need to call the auto* tools via ${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care to symlink the correct tool to the correct name, so we can just use aclocal, autoconf, etc.
25 lines
538 B
Makefile
25 lines
538 B
Makefile
# $NetBSD: Makefile,v 1.5 2005/06/01 20:07:59 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= faac-1.24
|
|
PKGREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=faac/}
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://www.audiocoding.com/
|
|
COMMENT= AAC audio encoder
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= automake
|
|
GNU_CONFIGURE= yes
|
|
WRKSRC= ${WRKDIR}/faac
|
|
|
|
LIBTOOLIZE= ${PREFIX}/bin/libtoolize
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC}; \
|
|
${LIBTOOLIZE} --automake; \
|
|
aclocal; autoheader; automake -a --foreign -i; autoconf
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|