- build and install as shared lib
This commit is contained in:
Stephan Raue 2009-10-19 06:05:15 +02:00
parent 8310c9f65c
commit 897537f046
2 changed files with 9 additions and 5 deletions

View File

@ -4,18 +4,16 @@
$SCRIPTS/build toolchain $SCRIPTS/build toolchain
cd $BUILD/$1* 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 \
--without-xmms \ --without-xmms \
--without-drm \ --without-drm \
--without-mpeg4ip \ --without-mpeg4ip \
make make
#$STRIP libfaad/.libs/*.so*
$MAKEINSTALL $MAKEINSTALL

6
packages/audio/faad2/install Executable file
View File

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