5d4940c199
Approved by: portmgr (blanket)
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
PORTNAME= flac
|
|
DISTVERSION= 1.4.3
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= https://downloads.xiph.org/releases/flac/ \
|
|
https://github.com/xiph/flac/releases/download/${DISTVERSION}/
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
COMMENT= Free lossless audio codec
|
|
WWW= https://www.xiph.org/flac/
|
|
|
|
LICENSE= BSD3CLAUSE GFDL GPLv2 LGPL21
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/COPYING.Xiph
|
|
LICENSE_FILE_GFDL= ${WRKSRC}/COPYING.FDL
|
|
|
|
LIB_DEPENDS= libogg.so:audio/libogg
|
|
|
|
USES= compiler:c11 cpe iconv libtool pathfix pkgconfig tar:xz
|
|
|
|
CPE_VENDOR= flac_project
|
|
|
|
# Preserve UTF-8 filenames in test/flac-to-flac-metadata-test-files/.
|
|
# They are referenced by the test suite.
|
|
EXTRACT_CMD= ${SETENV} LC_ALL=C.UTF-8 ${TAR}
|
|
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
|
|
CONFIGURE_ARGS= --enable-static \
|
|
--with-ogg="${LOCALBASE}" \
|
|
--disable-doxygen-docs \
|
|
--disable-thorough-tests
|
|
INSTALL_TARGET= install-strip
|
|
TEST_TARGET= check
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# test_libFLAC:
|
|
# "iterator claims file is writable when tester thinks it should not be"
|
|
.if ${UID} == 0
|
|
do-test:
|
|
@${ECHO_MSG} "The tests cannot be run as root, skipping."
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|