libva: fix package handling

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-11-17 14:33:41 +01:00
parent 5fba063f17
commit 18adadffe3
3 changed files with 4 additions and 5 deletions

View File

@ -2,7 +2,7 @@
. config/options $1 . config/options $1
cd $PKG_BUILD cd $BUILD/$PKG_NAME-*
# apply patches provide with the source package # apply patches provide with the source package
cat debian/patches/*.patch | patch -p1 cat debian/patches/*.patch | patch -p1

View File

@ -3,13 +3,13 @@
. config/options $1 . config/options $1
mkdir -p $INSTALL/usr/lib mkdir -p $INSTALL/usr/lib
cp -P $PKG_BUILD/va/.libs/libva*.so* $INSTALL/usr/lib cp -P $BUILD/$PKG_NAME-*/va/.libs/libva*.so* $INSTALL/usr/lib
rm -rf $INSTALL/usr/lib/libva-*.so*T rm -rf $INSTALL/usr/lib/libva-*.so*T
mkdir -p $INSTALL/usr/lib/va mkdir -p $INSTALL/usr/lib/va
cp -P $PKG_BUILD/i965_drv_video/.libs/*.so $INSTALL/usr/lib/va cp -P $BUILD/$PKG_NAME-*/i965_drv_video/.libs/*.so $INSTALL/usr/lib/va
if [ "$DEVTOOLS" = yes ]; then if [ "$DEVTOOLS" = yes ]; then
mkdir -p $INSTALL/usr/bin mkdir -p $INSTALL/usr/bin
cp $PKG_BUILD/test/.libs/vainfo $INSTALL/usr/bin cp $BUILD/$PKG_NAME-*/test/.libs/vainfo $INSTALL/usr/bin
fi fi

View File

@ -13,4 +13,3 @@ PKG_SHORTDESC="libva: The main motivation for VAAPI (Video Acceleration API) is
PKG_LONGDESC="The main motivation for VAAPI (Video Acceleration API) is to enable hardware accelerated video decode/encode at various entry-points (VLD, IDCT, Motion Compensation etc.) for the prevailing coding standards today (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, and VC-1/VMW3). Extending XvMC was considered, but due to its original design for MPEG-2 MotionComp only, it made more sense to design an interface from scratch that can fully expose the video decode capabilities in today's GPUs." PKG_LONGDESC="The main motivation for VAAPI (Video Acceleration API) is to enable hardware accelerated video decode/encode at various entry-points (VLD, IDCT, Motion Compensation etc.) for the prevailing coding standards today (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, and VC-1/VMW3). Extending XvMC was considered, but due to its original design for MPEG-2 MotionComp only, it made more sense to design an interface from scratch that can fully expose the video decode capabilities in today's GPUs."
PKG_IS_ADDON="no" PKG_IS_ADDON="no"