mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
audio/spandsp: Updated for version 0.0.6.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
982102c9bc
commit
bcaafc8f7d
4 changed files with 21 additions and 26 deletions
|
@ -1,15 +1,14 @@
|
||||||
spandsp 0.0.6pre21 - A DSP library for telephony
|
spandsp - A DSP library for telephony
|
||||||
-----------------------------------------------
|
-----------------------------------------------
|
||||||
|
|
||||||
SpanDSP is a library of DSP functions for telephony, in the 8000 sample per
|
SpanDSP is a library of DSP functions for telephony, in the 8000 sample per
|
||||||
second world of E1s, T1s, and higher order PCM channels. It contains low
|
second world of E1s, T1s, and higher order PCM channels. It contains low level
|
||||||
level functions, such as basic filters. It also contains higher level
|
functions, such as basic filters. It also contains higher level functions, such
|
||||||
functions, such as cadenced supervisory tone detection, and a complete
|
as cadenced supervisory tone detection, and a complete software FAX machine.
|
||||||
software FAX machine.
|
|
||||||
The software has been designed to avoid intellectual property issues, using
|
The software has been designed to avoid intellectual property issues, using
|
||||||
mature techniques where all relevant patents have expired. See the file
|
mature techniques where all relevant patents have expired. See the file
|
||||||
DueDiligence for important information about these intellectual property issues
|
DueDiligence for important information about these intellectual property issues.
|
||||||
|
|
||||||
The library is licenced under the LGPL 2.1 licence. The test suite, and some
|
The library is licenced under the LGPL 2.1 licence. The test suite, and some support
|
||||||
support programs are licenced under the GPL 2 licence. The full text of these
|
programs are licenced under the GPL 2 licence. The full text of these licences can
|
||||||
licences can be found in the file COPYING.
|
be found in the file COPYING.
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||||
|
|
||||||
|-----handy-ruler------------------------------------------------------|
|
|-----handy-ruler------------------------------------------------------|
|
||||||
spandsp: spandsp 0.0.6pre21 (A DSP library for telephony)
|
spandsp: spandsp (DSP library for telephony)
|
||||||
spandsp:
|
spandsp:
|
||||||
spandsp: SpanDSP is a library of DSP functions for telephony, in the 8000
|
spandsp: SpanDSP is a library of DSP functions for telephony, in the 8000
|
||||||
spandsp: sample per second world of E1s, T1s, and higher order PCM channels.
|
spandsp: sample per second world of E1s, T1s, and higher order PCM channels.
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#
|
#
|
||||||
# Slackware build script for spandsp
|
# Slackware build script for spandsp
|
||||||
#
|
#
|
||||||
# Copyright 2013 slacksam (sam_web@yahoo.de)
|
# Written 2014 by Marek Srejma <sam_web@yahoo.de>
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
PRGNAM=spandsp
|
PRGNAM=spandsp
|
||||||
VERSION=${VERSION:-0.0.6}
|
VERSION=${VERSION:-0.0.6}
|
||||||
SUBVERSION=${SUBVERSION:-pre21}
|
SUBVERSION=${SUBVERSION:-""}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -61,21 +61,17 @@ rm -rf $PKG
|
||||||
mkdir -p $TMP $PKG
|
mkdir -p $TMP $PKG
|
||||||
cd $TMP
|
cd $TMP
|
||||||
rm -rf $PRGNAM-$VERSION
|
rm -rf $PRGNAM-$VERSION
|
||||||
tar xvf $CWD/$PRGNAM-$VERSION$SUBVERSION.tgz
|
tar xvf $CWD/$PRGNAM-$VERSION$SUBVERSION.tar.gz
|
||||||
|
chown -R root:root $PRGNAM-$VERSION
|
||||||
|
chmod -R u+w,go+r-w,a-s $PRGNAM-$VERSION
|
||||||
cd $PRGNAM-$VERSION
|
cd $PRGNAM-$VERSION
|
||||||
chown -R root:root .
|
|
||||||
find -L . \
|
|
||||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
|
||||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
|
||||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
|
||||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
|
||||||
|
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||||
--disable-static \
|
--enable-static=no \
|
||||||
--build=$ARCH-slackware-linux
|
--build=$ARCH-slackware-linux
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="spandsp"
|
PRGNAM="spandsp"
|
||||||
VERSION="0.0.6pre21"
|
VERSION="0.0.6"
|
||||||
HOMEPAGE="http://www.soft-switch.org/"
|
HOMEPAGE="http://www.soft-switch.org/"
|
||||||
DOWNLOAD="http://www.soft-switch.org/downloads/spandsp/spandsp-0.0.6pre21.tgz"
|
DOWNLOAD="http://soft-switch.org/downloads/spandsp/spandsp-0.0.6.tar.gz"
|
||||||
MD5SUM="492f3790439891c07d8c06e97ccbfcf1"
|
MD5SUM="897d839516a6d4edb20397d4757a7ca3"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES=""
|
REQUIRES=""
|
||||||
|
|
Loading…
Reference in a new issue