view audio/flac/flac.sh @ 1248:6a698b855d54

compression/xz: upgrade to 2.5.2
author David Demelier <markand@malikania.fr>
date Mon, 01 Nov 2021 11:23:18 +0100
parents 325631424c65
children 9867e578b1a9
line wrap: on
line source

#!/bin/sh
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

PKGNAME=flac
PKGVERSION=1.3.2
PKGREVISION=1
PKGLICENSE="CUSTOM GPL-2.0-only LGPL-2.1-only"
PKGSUMMARY="free lossless audio codec"
PKGDOWNLOAD="http://downloads.xiph.org/releases/$PKGNAME/$PKGNAME-$PKGVERSION.tar.xz"
PKGDEPENDS=""
PKGOPTIONS="DOXYGEN OGG"

: ${CHOST:=$(uname -m)-linux-musl}
: ${CBUILD:=$(uname -m)-linux-musl}
: ${CC:=clang}
: ${CFLAGS:=-O2}
: ${CXX:=clang++}
: ${CXXFLAGS:=-O2}
: ${LDFLAGS:=}
: ${LIBS:=}
: ${DOXYGEN:=yes}
: ${OGG:=yes}

if [ "$DOXYGEN" = "yes" ]; then
	PKGDEPENDS="doxygen:build $PKGDEPENDS"
	with_doxygen="--enable-doxygen-docs"
else
	with_doxygen="--disable-doxygen-docs"
fi

if [ "$OGG" = "yes" ]; then
	PKGDEPENDS="libogg $PKGDEPENDS"
	with_ogg="--enable-ogg"
else
	with_ogg="--disable-ogg"
fi

build()
{
	rm -rf $PKGNAME-$PKGVERSION
	tar xvf $PKGNAME-$PKGVERSION.tar.xz
	cd $PKGNAME-$PKGVERSION

	# configure script check for DOXYGEN variable presence.
	unset DOXYGEN
	CC="$CC" \
	CFLAGS="$CFLAGS" \
	CXX="$CXX" \
	CXXFLAGS="$CXXFLAGS" \
	LDFLAGS="$LDFLAGS" \
	LIBS="$LIBS" \
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix= \
		$with_doxygen \
		$with_ogg
	make
	make install DESTDIR=$DESTDIR
	find $DESTDIR -type f -name "*.la" -delete

	cd ..
	rm -rf $PKGNAME-$PKGVERSION
}