SDL_image: add autoreconf support

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-11-25 18:05:03 +01:00
parent ced7d15a53
commit 603f57fdc6
2 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,11 @@
. config/options $1
cd $PKG_BUILD
# create some files needed for autoreconf
touch NEWS AUTHORS ChangeLog
do_autoreconf
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
@ -25,6 +30,7 @@ cd $PKG_BUILD
--enable-xcf \
--enable-xpm \
--enable-xv \
--with-sdl-prefix=$SYSROOT_PREFIX/usr \
make

View File

@ -12,3 +12,5 @@ PKG_SECTION="multimedia"
PKG_SHORTDESC="libsdl_image: A cross-platform Graphic API"
PKG_LONGDESC="SDL_image is an image loading library that is used with the SDL library, and almost as portable. It allows a programmer to use multiple image formats without having to code all the loading and conversion algorithms themselves."
PKG_IS_ADDON="no"
PKG_AUTORECONF="no"