mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
7cd5e34f26
- Move LICENSE upward - Add USE_LDCONFIG - Pass maintainership to submitter - While I'm here: - Use USES=pathfix - Strip shared library Changes: https://github.com/mstorsjo/fdk-aac/blob/master/ChangeLog PR: ports/184351 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
29 lines
682 B
Makefile
29 lines
682 B
Makefile
# Created by: Martin Matuska <mm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fdk-aac
|
|
PORTVERSION= 0.1.3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/opencore-amr/${PORTNAME}
|
|
|
|
MAINTAINER= 5u623l20@gmail.com
|
|
COMMENT= Port of the Fraunhofer FDK AAC Codec Library
|
|
|
|
LICENSE= FRAUNHOFER_FDK_AAC
|
|
LICENSE_NAME= Software License for The Fraunhofer FDK AAC Codec Library for Android
|
|
LICENSE_FILE= ${WRKSRC}/NOTICE
|
|
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
|
|
|
|
NOT_FOR_ARCHS= sparc64
|
|
NOT_FOR_ARCHS_REASON= not yet ported to this architecture
|
|
|
|
CONFIGURE_ENV= LIBS="-lm"
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= pathfix
|
|
|
|
post-build:
|
|
@${STRIP_CMD} ${WRKSRC}/.libs/libfdk-aac.so.0
|
|
|
|
.include <bsd.port.mk>
|