From 9ecedd74ad048d8b34c56f164df350efa9b2e684 Mon Sep 17 00:00:00 2001 From: Humdinger Date: Mon, 2 Jan 2017 19:20:04 +0100 Subject: [PATCH] New recipe vor BurnItNow v1.1 --- haiku-apps/burnitnow/burnitnow-1.1.recipe | 52 +++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 haiku-apps/burnitnow/burnitnow-1.1.recipe diff --git a/haiku-apps/burnitnow/burnitnow-1.1.recipe b/haiku-apps/burnitnow/burnitnow-1.1.recipe new file mode 100644 index 000000000..94c9c32a6 --- /dev/null +++ b/haiku-apps/burnitnow/burnitnow-1.1.recipe @@ -0,0 +1,52 @@ +SUMMARY="An application to burn audio and data CDs" +DESCRIPTION="BurnItNow is a GUI frontend for cdrecord and mkisofs. \ +It supports creating audio and data CDs, as well as burning ISO images, \ +making 1:1 copies and blanking CD-RWs (the blanking depends very much \ +on the used hardware and its configuration)." +HOMEPAGE="https://github.com/HaikuArchives/BurnItNow" +COPYRIGHT="2010-2016 BurnItNow Team" +LICENSE="MIT" +REVISION="1" +SOURCE_URI="https://github.com/HaikuArchives/BurnItNow/archive/v$portVersion.tar.gz" +CHECKSUM_SHA256="e1a03cbc0d7fa26a589c4e88cc827318ccf2468da394262fd2fb95120efcfefd" +SOURCE_DIR="BurnItNow-$portVersion" + +ARCHITECTURES="x86_gcc2 x86 x86_64" + +PROVIDES=" + burnitnow$secondaryArchSuffix = $portVersion + app:BurnItNow = $portVersion + " +REQUIRES=" + haiku + cmd:cdrecord + cmd:mkisofs + cmd:readcd + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:g++ + cmd:ld + cmd:make + " + +BUILD() +{ + cd Source + make $jobArgs OBJ_DIR=objects + make bindcatalogs OBJ_DIR=objects +} + +INSTALL() +{ + mkdir -p $appsDir $docDir + + cp Source/objects/BurnItNow $appsDir + cp -r Docs/* $docDir/ + + addAppDeskbarSymlink $appsDir/BurnItNow +}