mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 15:08:57 +02:00
39 lines
753 B
Plaintext
39 lines
753 B
Plaintext
DESCRIPTION="backup - A backup application for Haiku"
|
|
SUMMARY="A backup application for Haiku"
|
|
HOMEPAGE="https://github.com/kallisti5/backup"
|
|
SRC_URI="git+https://github.com/kallisti5/backup"
|
|
REVISION="1"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
backup = $portVersion
|
|
app:backup = $portVersion
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:make
|
|
cmd:mkdepend"
|
|
|
|
PATCHES="backup-0.0.1.patch"
|
|
|
|
COPYRIGHT="2013 Alexander von Gluck IV"
|
|
LICENSE="MIT"
|
|
|
|
BUILD()
|
|
{
|
|
make BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
architecture=$(echo $buildArchitecture | sed 's/_/-/g')
|
|
mkdir -p $appsDir
|
|
cp objects.$architecture-release/backup $appsDir/Backup
|
|
|
|
addAppDeskbarSymlink $appsDir/Backup
|
|
}
|