Files
haikuports/media-libs/sdl_rtf/sdl_rtf-0.1.0.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

34 lines
773 B
Plaintext

DESCRIPTION="SDL-rtf"
HOMEPAGE="http://www.libsdl.org/projects/SDL_rtf"
SRC_URI="http://www.libsdl.org/projects/SDL_rtf/release/SDL_rtf-0.1.0.tar.gz"
CHECKSUM_MD5="fe36733167b5c89f128414f32612121a"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND="media-libs/sdl-ttf >= 2.0.9"
BUILD()
{
cd SDL_rtf-0.1.0
rm aclocal.m4
rm acinclude.m4
mkdir -p m4
echo "AC_CONFIG_MACRO_DIR([m4]) >> configure.in"
libtoolize --copy --force --install
aclocal --install -I m4
./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 SDL_rtf-0.1.0
make install
}
LICENSE="GNU LGPL v2"
COPYRIGHT="2003-2009 Sam Lantinga"