libmpeg2:

- build and install as shared lib
This commit is contained in:
Stephan Raue 2009-10-22 08:35:08 +02:00
parent c7b2b26ea2
commit 714e817f55
2 changed files with 9 additions and 2 deletions

View File

@ -8,8 +8,8 @@ cd $PKG_BUILD
./configure --host=$TARGET_NAME \ ./configure --host=$TARGET_NAME \
--build=$HOST_NAME \ --build=$HOST_NAME \
--prefix=/usr \ --prefix=/usr \
--enable-static \ --disable-static \
--disable-shared \ --enable-shared \
--disable-sdl \ --disable-sdl \
--without-x --without-x

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