mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
libraries/libffado: Updated for version 2.0.1.
Signed-off-by: Michiel van Wessem <michiel@slackbuilds.org>
This commit is contained in:
parent
10b228b68a
commit
1dd7d65847
3 changed files with 23 additions and 8 deletions
|
@ -7,5 +7,13 @@ considered less important. The most obvious example of a consumer
|
||||||
feature is AC3/DTS passthrough support, which is unsupported at
|
feature is AC3/DTS passthrough support, which is unsupported at
|
||||||
the moment.
|
the moment.
|
||||||
|
|
||||||
libffado requires libiec61883, libxml++ and scons, also available
|
When using ffado as a normal user you might run into permission
|
||||||
from SlackBuilds.org
|
problems with access to /dev/raw1394. To solve that issue you
|
||||||
|
can add the line
|
||||||
|
|
||||||
|
KERNEL=="raw1394", GROUP="disk"
|
||||||
|
|
||||||
|
to /lib/udev/rules.d/65-permissions.rules and make your user a
|
||||||
|
member of the disk group.
|
||||||
|
|
||||||
|
libffado requires libiec61883, libxml++ and scons.
|
||||||
|
|
|
@ -23,11 +23,18 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=libffado
|
PRGNAM=libffado
|
||||||
VERSION=2.0.0
|
VERSION=2.0.1
|
||||||
ARCH=${ARCH:-i486}
|
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$( uname -m )" in
|
||||||
|
i?86) ARCH=i486 ;;
|
||||||
|
arm*) ARCH=arm ;;
|
||||||
|
*) ARCH=$( uname -m ) ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
CWD=$(pwd)
|
CWD=$(pwd)
|
||||||
TMP=${TMP:-/tmp/SBo}
|
TMP=${TMP:-/tmp/SBo}
|
||||||
PKG=$TMP/package-$PRGNAM
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
PRGNAM="libffado"
|
PRGNAM="libffado"
|
||||||
VERSION="2.0.0"
|
VERSION="2.0.1"
|
||||||
HOMEPAGE="http://www.ffado.org/"
|
HOMEPAGE="http://www.ffado.org/"
|
||||||
DOWNLOAD="http://www.ffado.org/files/libffado-2.0.0.tar.gz"
|
DOWNLOAD="http://www.ffado.org/files/libffado-2.0.1.tar.gz"
|
||||||
MD5SUM="89fd874731a1437043d0a57ed87c81ef"
|
MD5SUM="786f31facd417e6207e429f50af0e15e"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
MAINTAINER="Heinz Wiesinger"
|
MAINTAINER="Heinz Wiesinger"
|
||||||
EMAIL="pprkut@liwjatan.at"
|
EMAIL="pprkut@liwjatan.at"
|
||||||
APPROVED="dsomero"
|
APPROVED="Michiel van Wessem"
|
||||||
|
|
Loading…
Reference in a new issue