new package:

- add inital libvpx package (not working)
This commit is contained in:
Stephan Raue 2010-06-16 15:22:45 +02:00
parent a07b4f7fee
commit ffae7a95f9
3 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#!/bin/sh
. config/options
$SCRIPTS/build toolchain
cd $PKG_BUILD
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--disable-static \
--enable-shared \
--disable-sdl \
--without-x
make
$MAKEINSTALL

View File

@ -0,0 +1,7 @@
#!/bin/sh
. config/options
mkdir -p $INSTALL/usr/lib
cp -PR $PKG_BUILD/libmpeg2/.libs/*.so* $INSTALL/usr/lib
cp -PR $PKG_BUILD/libmpeg2/convert/.libs/*.so* $INSTALL/usr/lib

View File

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