mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 04:58:52 +02:00
49 lines
1.1 KiB
Bash
49 lines
1.1 KiB
Bash
SUMMARY="A GUI frontend for burning CDs"
|
|
DESCRIPTION="BurnItNow is a GUI frontend for CDRecord and mkisofs. \
|
|
It supports Audio CD, MixCD (on the fly), Data CD (on the fly, multisession), \
|
|
BootableCD and burning an BFS image."
|
|
HOMEPAGE="https://github.com/HaikuArchives/BurnItNow"
|
|
COPYRIGHT="2010-2014 BurnItNow Team"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
SOURCE_URI="https://github.com/HaikuArchives/BurnItNow/archive/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="7db12d261ddebcbfe82e2ab5e7aed4227caef476f01488a1ccec4f58287833d2"
|
|
SOURCE_DIR="BurnItNow-$portVersion"
|
|
|
|
ARCHITECTURES="!x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
burnitnow$secondaryArchSuffix = $portVersion
|
|
app:BurnItNow = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
cmd:cdrecord
|
|
cmd:mkisofs
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:make
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd Source
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd Source
|
|
mkdir -p $appsDir
|
|
cp objects/BurnItNow $appsDir
|
|
addAppDeskbarSymlink $appsDir/BurnItNow
|
|
}
|