43 lines
854 B
Makefile
43 lines
854 B
Makefile
# $OpenBSD: Makefile,v 1.57 2016/04/09 20:14:48 naddy Exp $
|
|
|
|
COMMENT= lame ain't an MP3 encoder
|
|
|
|
DISTNAME= lame-3.99.5
|
|
REVISION= 0
|
|
|
|
SHARED_LIBS += mp3lame 2.1 # 0.1
|
|
|
|
CATEGORIES= audio
|
|
|
|
HOMEPAGE= http://lame.sourceforge.net/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# LGPLv2 - patent restriction
|
|
PERMIT_PACKAGE_CDROM= MP3 patent, http://mp3licensing.com/royalty/
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
|
|
WANTLIB += c iconv m ncurses
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=lame/}
|
|
|
|
LIB_DEPENDS= converters/libiconv
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= --enable-mp3rtp \
|
|
--disable-mp3x \
|
|
--with-fileio=lame
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
BUILD_DEPENDS+= devel/nasm
|
|
CONFIGURE_ARGS+= --enable-nasm
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nasm
|
|
.endif
|
|
|
|
MAKE_FLAGS= pkghtmldir=${TRUEPREFIX}/share/doc/lame
|
|
|
|
.include <bsd.port.mk>
|