mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
55 lines
1.2 KiB
Bash
55 lines
1.2 KiB
Bash
SUMMARY="Sum-It is a native spreadsheet"
|
|
DESCRIPTION="
|
|
Sum-It is a spreadsheet for BeOS (Download BeOS for free). This is Open \
|
|
Sum-It, the open source version of Maarten Hekkelman's Sum-It application. \
|
|
Sum-It has many features, including a plug-in architecture for formulas and \
|
|
graphs. This product includes software developed by Hekkelman Programmatuur B.V.
|
|
"
|
|
HOMEPAGE="https://github.com/HaikuArchives/OpenSumIt"
|
|
COPYRIGHT="
|
|
1996-1998, 2000 Hekkelman Programmatuur B.V. All rights reserved.
|
|
1999-2000 Tim Vernum. All rights reserved.
|
|
"
|
|
LICENSE="BSD (4-clause)"
|
|
REVISION="4"
|
|
SOURCE_URI="https://github.com/HaikuArchives/OpenSumIt/archive/cdab184a27.tar.gz"
|
|
CHECKSUM_SHA256="064cd9eeab62b0bab12400d23d922b912c46baccd9040dd04e8b16afd91bf70a"
|
|
SOURCE_DIR="OpenSumIt-cdab184a27cb9bbf0f088384a9ecfb07b9daefdc"
|
|
|
|
ARCHITECTURES="!x86 x86_gcc2"
|
|
|
|
PROVIDES="
|
|
sum_it = $portVersion
|
|
app:Sum_It = $portVersion
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:gcc
|
|
cmd:flex
|
|
cmd:bison
|
|
cmd:rez
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
pushd bsl
|
|
BE_C_COMPILER=gcc make DEBUG=0
|
|
PATH=`pwd`:$PATH
|
|
popd
|
|
|
|
|
|
cd sum-it
|
|
BE_C_COMPILER=gcc make DEBUG=0
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp sum-it/OpenSum-It $appsDir/Sum-It
|
|
addAppDeskbarSymlink $appsDir/Sum-It
|
|
}
|