fde70501ad
* Improved decoding efficiency of all bit depths but especially so for 24 bits for IA32 architecture. * Faster encoding using SSE and AVX. * Fixed bartlett, bartlett_hann and triangle functions. * New apodization functions partial_tukey and punchout_tukey for improved compression. * Retuned compression presets to incorporate new apodization functions. * Fix -Wcast-align warnings on armhf architecture
62 lines
1.5 KiB
Makefile
62 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.50 2014/11/29 20:42:12 adam Exp $
|
|
|
|
DISTNAME= flac-1.3.1
|
|
CATEGORIES= audio archivers
|
|
MASTER_SITES= http://downloads.xiph.org/releases/flac/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://xiph.org/flac/
|
|
COMMENT= Free lossless audio codec
|
|
LICENSE= modified-bsd AND gnu-gpl-v2 AND gnu-lgpl-v2.1
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
USE_LANGUAGES= c c++
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ENV+= ac_cv_path_XMMS_CONFIG="no"
|
|
CONFIGURE_ENV+= ac_cv_prog_DOXYGEN=""
|
|
|
|
PKGCONFIG_OVERRIDE+= src/libFLAC++/flac++.pc.in src/libFLAC/flac.pc.in
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-*-i386)
|
|
BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm
|
|
.endif
|
|
|
|
.if !empty(MACHINE_PLATFORM:M*-*-powerpc)
|
|
. if ${OPSYS} != "Darwin"
|
|
CONFIGURE_ARGS+= --disable-asm-optimizations
|
|
CONFIGURE_ARGS+= --disable-altivec
|
|
. endif
|
|
.endif
|
|
|
|
.if !empty(MACHINE_PLATFORM:MDarwin-*-i386)
|
|
CONFIGURE_ARGS+= --disable-asm-optimizations
|
|
.endif
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
# Version 1.1.2 of flac doesn't seem to build correctly with -O3 using
|
|
# the MIPSpro compiler.
|
|
# XXX: retry for 1.1.3
|
|
.if !empty(PKGSRC_COMPILER:Mmipspro)
|
|
BUILDLINK_TRANSFORM+= rm:-O3
|
|
.endif
|
|
|
|
# SunPro does not support __inline
|
|
.if !empty(PKGSRC_COMPILER:Msunpro)
|
|
CFLAGS+= -D__inline=inline
|
|
.endif
|
|
|
|
# With -fgnu89-inline option duplicate symbols arise.
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
BUILDLINK_TRANSFORM+= rm:-fgnu89-inline
|
|
.endif
|
|
|
|
.include "../../multimedia/libogg/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|