Files
haikuports/media-libs/libsdl/libsdl-1.3_gsoc.recipe
Oliver Tappe aec3652b01 Cleanup: fix names of recipe and patch files.
* 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
2013-08-25 23:51:08 +02:00

37 lines
703 B
Plaintext

DESCRIPTION="Simple Direct Media Layer"
HOMEPAGE="http://www.libsdl.org/"
SRC_URI="hg+http://bitbucket.org/antifinidictor/haiku-sdl-1.3"
#CHECKSUM_MD5="e52086d1b508fa0b76c52ee30b55bec4"
REVISION="1"
STATUS_HAIKU="broken"
MESSAGE="This is a work in progress and not ready for release."
DEPEND=""
BUILD()
{
cd libsdl-1.3-gsoc
./autogen.sh
MANDIR=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
LIBDIR=`finddir B_COMMON_LIB_DIRECTORY`
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--libdir=$LIBDIR \
--mandir=$MANDIR
make
}
INSTALL()
{
cd libsdl-1.3-gsoc
make install
}
TEST()
{
cd libsdl-1.3-gsoc/test
./autogen
./configure
make
}
LICENSE="Zlib"
COPYRIGHT="1997-2011 Sam Lantinga"