New recipe vor BurnItNow v1.1

This commit is contained in:
Humdinger
2017-01-02 19:20:04 +01:00
parent 7c38b97118
commit 9ecedd74ad

View File

@@ -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
}