mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 16:50:06 +02:00
62 lines
1.4 KiB
Bash
62 lines
1.4 KiB
Bash
SUMMARY="A nonlinear presentation software"
|
|
DESCRIPTION="MultiTalk is an SDL based presentation program with slides laid \
|
|
on a grid instead of linearly. Slides can have any size (bigger or smaller \
|
|
than the screen, and you can move in both directions between them. Hyperlinks \
|
|
are also possible."
|
|
HOMEPAGE="https://github.com/JohannesBuchner/multitalk"
|
|
COPYRIGHT="2006-2008 David Ingram
|
|
2010 Johannes Buchner"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
COMMIT="5abae62da5dfe5bbdf8c77a22f2622c8fb88103c"
|
|
SOURCE_URI="https://github.com/JohannesBuchner/multitalk/archive/$COMMIT.tar.gz"
|
|
CHECKSUM_SHA256="47d250cbdea4836e8320340da47d2259a18a2fe8bc22d3054d97cd67b68b8546"
|
|
SOURCE_DIR="multitalk-$COMMIT"
|
|
PATCHES="multitalk-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2"
|
|
|
|
PROVIDES="
|
|
multitalk = $portVersion
|
|
cmd:multitalk
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
sdl_gfx
|
|
sdl_image
|
|
sdl_ttf
|
|
libsdl
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:sdl_gfx
|
|
devel:sdl_image
|
|
devel:sdl_ttf
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:g++
|
|
cmd:make
|
|
cmd:sdl_config
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make CCFLAGS="-O3 -lbe" $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $binDir
|
|
cp multitalk $binDir
|
|
mkdir -p $dataDir/multitalk/fonts
|
|
mkdir -p $dataDir/multitalk/styles
|
|
mkdir -p $dataDir/multitalk/gfx
|
|
cp -a fonts/* $dataDir/multitalk/fonts
|
|
cp -a gfx/* $dataDir/multitalk/gfx
|
|
cp -d styles/*.style $dataDir/multitalk/styles
|
|
|
|
mkdir -p $docDir
|
|
cp docs/multitalk.pdf $docDir
|
|
}
|