libvpx: remove package, no longer needed

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-07-20 02:53:18 +02:00
parent 832394b09e
commit 35e680db9a
3 changed files with 0 additions and 63 deletions

View File

@ -1,51 +0,0 @@
#!/bin/sh
. config/options
case $TARGET_ARCH in
i386)
TGT=x86-linux-gcc
;;
x86_64)
TGT=x86_64-linux-gcc
;;
arm)
TGT=armv7-linux-gcc
;;
esac
export MAKEFLAGS=-j1
export LD="$CC"
cd $PKG_BUILD
./configure --target=$TGT \
--cpu=$TARGET_CPU \
--prefix=/usr \
--enable-shared \
--enable-runtime-cpu-detect \
--enable-optimizations \
--enable-extra-warnings \
--disable-werror \
--log \
--enable-vp8 \
--enable-postproc \
--enable-multithread \
--enable-spatial-resampling \
--enable-pic \
--disable-ccache \
--disable-debug \
--disable-gprof \
--disable-gcov \
--disable-install-docs \
--enable-install-bins \
--enable-install-libs \
--disable-install-srcs \
--enable-libs \
--disable-examples \
make
$MAKEINSTALL

View File

@ -1,11 +0,0 @@
#!/bin/sh
. config/options
LIBVPX_SO=`ls -d $PKG_BUILD/libvpx.so*`
LIBVPX_SONAME=`basename $LIBVPX_SO`
mkdir -p $INSTALL/usr/lib
cp $PKG_BUILD/libvpx.so* $INSTALL/usr/lib
ln -sf $LIBVPX_SONAME $INSTALL/usr/lib/libvpx.so.0
ln -sf $LIBVPX_SONAME $INSTALL/usr/lib/libvpx.so.0.9

View File

@ -1 +0,0 @@
http://webm.googlecode.com/files/libvpx-0.9.1.tar.bz2