From 6053c04edcce9757bb2c824d290d97da37aa2874 Mon Sep 17 00:00:00 2001 From: Barrett17 Date: Mon, 29 May 2017 18:10:25 +0200 Subject: [PATCH] Add UltraDV recipe for x86 and x86_64 (#1371) * Created by miqlas, updated by me to work. --- haiku-apps/ultradv/ultradv-0.0.1.recipe | 49 +++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 haiku-apps/ultradv/ultradv-0.0.1.recipe diff --git a/haiku-apps/ultradv/ultradv-0.0.1.recipe b/haiku-apps/ultradv/ultradv-0.0.1.recipe new file mode 100644 index 000000000..c6d8a56ca --- /dev/null +++ b/haiku-apps/ultradv/ultradv-0.0.1.recipe @@ -0,0 +1,49 @@ +SUMMARY="A video editor for Haiku" +DESCRIPTION="UltraDV is a full-featured non-linear video editing application \ +created by Mediapede Inc in 1998. Features include 8 tracks of video, video \ +capture, audio capture, transitions, real-time preview, and much more. The \ +goal of this project is to complete the port to Haiku, and also provide a \ +showcase for the awesomeness of the Haiku media server." +HOMEPAGE="https://github.com/Barrett17/UltraDV/" +COPYRIGHT="1998-2017 UltraDV Project" +LICENSE="MIT" +REVISION="3" +gitCommit="886aad8b0456372d049642de424cc58663b9a977" +SOURCE_URI="https://github.com/Barrett17/UltraDV/archive/$gitCommit.tar.gz" +CHECKSUM_SHA256="eb2f23a964613eaf3ae364e70a1d4338363b06d99f3a788f044d70ece028c1cb" +SOURCE_DIR="UltraDV-$gitCommit" + +ARCHITECTURES="x86_gcc2 x86 x86_64" + +PROVIDES=" + ultradv = $portVersion + app:UltraDV = $portVersion + " +REQUIRES=" + haiku + cmd:grep + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + cmd:jam + cmd:gcc + cmd:ld + cmd:which + " + +BUILD() +{ + # not an autotools configure + ./configure --prefix=$prefix + jam $jobArgs +} + +INSTALL() +{ + mkdir -p $appsDir/UltraDV/ + + cp generated/distro-haiku-x86-*-debug/UltraDV $appsDir/UltraDV/ +}