mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
multimedia/farsight2: Miscellaneous cleanups
This commit is contained in:
parent
feff537d31
commit
4f724c31b5
3 changed files with 22 additions and 19 deletions
|
@ -1,10 +1,8 @@
|
|||
Farsight - Audio/Video Communications Framework
|
||||
|
||||
The Farsight project is an effort to create a framework to deal
|
||||
with all known audio/video conferencing protocols. On one side
|
||||
it offers a generic API that makes it possible to write plugins
|
||||
for different streaming protocols, on the other side it offers
|
||||
an API for clients to use those plugins.
|
||||
The Farsight project is an effort to create a framework to deal with all
|
||||
known audio/video conferencing protocols. On one side it offers a generic
|
||||
API that makes it possible to write plugins for different streaming protocols
|
||||
and on the other side it offers an API for clients to use those plugins.
|
||||
|
||||
Build Requirements: libnice, gst-python
|
||||
Runtime Requirements: gst-plugins-good, gst-plugins-bad
|
||||
This requires libnice and gst-python to build, and gst-plugins-ugly to run.
|
||||
|
|
|
@ -28,10 +28,19 @@
|
|||
|
||||
PRGNAM=farsight2
|
||||
VERSION=${VERSION:-0.0.17}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) export ARCH=i486 ;;
|
||||
arm*) export ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) export ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
@ -46,6 +55,9 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
@ -80,14 +92,10 @@ make install DESTDIR=$PKG
|
|||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
|
||||
( cd $PKG
|
||||
# Remove 'special' files
|
||||
find . -name perllocal.pod \
|
||||
-o -name ".packlist" \
|
||||
-o -name "*.bs" \
|
||||
| xargs rm -f
|
||||
)
|
||||
find $PKG -name perllocal.pod \
|
||||
-o -name ".packlist" \
|
||||
-o -name "*.bs" \
|
||||
| xargs rm -f
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
|
@ -100,5 +108,3 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
|
|||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
||||
|
||||
|
|
|
@ -17,4 +17,3 @@ farsight2:
|
|||
farsight2: Homepage: http://farsight.freedesktop.org/wiki/
|
||||
farsight2:
|
||||
farsight2:
|
||||
|
||||
|
|
Loading…
Reference in a new issue