new package:

- add eina for upcoming enna
This commit is contained in:
Stephan Raue 2009-10-03 22:54:47 +02:00
parent e580136b4d
commit d0bbce31ce
3 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#!/bin/sh
. config/options
$SCRIPTS/build toolchain
cd $PKG_BUILD
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--disable-static \
--enable-shared \
--enable-pthread \
--enable-chained-pool \
--enable-pass-through \
--enable-default-mempool \
--disable-doc\
make
$MAKEINSTALL

View File

@ -0,0 +1,11 @@
#!/bin/sh
. config/options
mkdir -p $INSTALL/usr/lib
cp -PR $PKG_BUILD/src/lib/.libs/libeina*.so* $INSTALL/usr/lib
mkdir -p $INSTALL/usr/lib/eina/mp
for i in chained_pool pass_through fixed_bitmap; do
cp -PR $PKG_BUILD/src/modules/mp/$i/.libs/*.so $INSTALL/usr/lib/eina/mp
done

View File

@ -0,0 +1 @@
http://sources.openelec.tv/svn/eina-42865.tar.bz2