mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
53 lines
1.1 KiB
Bash
53 lines
1.1 KiB
Bash
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
|
|
}
|