From 1587d87de5c752b675aec7363a5c5d57ef3ec211 Mon Sep 17 00:00:00 2001 From: maxice8 Date: Tue, 21 Nov 2017 05:20:45 -0200 Subject: [PATCH] flac: add --disable-thorough-tests and fix licenses. Without tests take very long, also take the opportunity to fix xlint errors. Closes: #9401 [via git-merge-pr] --- srcpkgs/flac/template | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/srcpkgs/flac/template b/srcpkgs/flac/template index 00aa2b7bc2c..57cb88a4472 100644 --- a/srcpkgs/flac/template +++ b/srcpkgs/flac/template @@ -1,18 +1,23 @@ # Template file for 'flac' pkgname=flac version=1.3.2 -revision=1 +revision=2 build_style=gnu-configure -configure_args="--disable-rpath --disable-doxygen-docs --disable-xmms-plugin --with-ogg=${XBPS_CROSS_BASE}/usr" +configure_args="--disable-rpath --disable-doxygen-docs --disable-xmms-plugin --with-ogg=${XBPS_CROSS_BASE}/usr +--disable-thorough-tests" hostmakedepends="automake pkg-config libtool nasm" makedepends="libogg-devel" short_desc="Free Lossless Audio Codec" maintainer="Juan RP " homepage="http://flac.sourceforge.net/" -license="BSD, GPL" +license="3-clause-BSD, GPL-2" distfiles="http://downloads.xiph.org/releases/flac/flac-${version}.tar.xz" checksum=91cfc3ed61dc40f47f050a109b08610667d73477af6ef36dcad31c31a4a8d53f +post_install() { + vlicense COPYING.Xiph +} + pre_configure() { autoreconf -fi }