mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
* this fixes the wrong recipe names introduced by myself in #d525fee * adjust patch names to match corresponding recipes * additionally: create 'additional-files' folders as hint to some ports that do not have a proper recipe yet
23 lines
504 B
Plaintext
23 lines
504 B
Plaintext
DESCRIPTION="Simple Direct Media Layer Image Library"
|
|
HOMEPAGE="http://www.libsdl.org/projects/SDL_image"
|
|
SRC_URI="http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.9.tar.gz"
|
|
CHECKSUM_MD5="793eb3e7bbbf396f83fc6cd031842aa3"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD()
|
|
{
|
|
cd SDL_image-1.2.9
|
|
libtoolize --force --copy --install
|
|
aclocal --install -I acinclude
|
|
./autogen.sh
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd SDL_image-1.2.9
|
|
make install
|
|
}
|