mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 13:38:52 +02:00
62 lines
1.6 KiB
Bash
62 lines
1.6 KiB
Bash
SUMMARY="A multimedia compositing tool"
|
|
DESCRIPTION="Clockwerk has been in development from January 2006 to July 2008 \
|
|
by Mindwork (www.mindwork.de) as one of the main in-house components of \
|
|
an application suite to realize distributed multimedia playback on Haiku \
|
|
client machines.
|
|
With Clockwerk you can combine audio, video and images for presentation or \
|
|
save in any audio/video format supported by Haiku."
|
|
HOMEPAGE="https://github.com/stippi/Clockwerk"
|
|
COPYRIGHT="2001-2009 Stephan Aßmus
|
|
2000-2006 Ingo Weinhold"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
commit="6eab4202c857c7dc6f21b6e3262cff0b503acb0e"
|
|
SOURCE_URI="$HOMEPAGE/archive/$commit.tar.gz"
|
|
SOURCE_FILENAME="$portName-$commit.tar.gz"
|
|
SOURCE_DIR="Clockwerk-$commit"
|
|
CHECKSUM_SHA256="b779ff85fb5626dba84c01b983ba0fb2072154eb60ba7ad051ca20d54f56afc2"
|
|
PATCHES="clockwerk-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
clockwerk$secondaryArchSuffix = $portVersion
|
|
app:Clockwerk$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libfreetype$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libfreetype$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:jam
|
|
"
|
|
|
|
USER_SETTINGS_FILES="
|
|
settings/mindwork-m3 directory
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
jam -q $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/Clockwerk
|
|
|
|
jam fulldistro
|
|
cp "Quick HowTo" $appsDir/Clockwerk
|
|
cd generated/distro-haiku-with-libs
|
|
cp Clockwerk $appsDir/Clockwerk
|
|
|
|
addAppDeskbarSymlink $appsDir/Clockwerk/Clockwerk
|
|
}
|