mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
46 lines
1.1 KiB
Bash
46 lines
1.1 KiB
Bash
SUMMARY="Fully functional 64bit calculator"
|
|
DESCRIPTION="BDH Calc is a fully functional 64bit calculator, supporting \
|
|
common arithmetic operations like adding, subtracting, dividing and \
|
|
multiplying as well as bitwise operators. You can choose the word size and \
|
|
whether the sign is considered to simulate any integral data type. Moreover \
|
|
the calculator supports binary, decimal and hexadecimal conversion."
|
|
HOMEPAGE="https://github.com/HaikuArchives/BDH-Calc"
|
|
COPYRIGHT="1999 Scott Hammond"
|
|
LICENSE="Zlib"
|
|
REVISION="3"
|
|
srcGitRev="92df9d48db9e1e684e9d28405e7a05f05e6671aa"
|
|
SOURCE_URI="https://github.com/HaikuArchives/BDH-Calc/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="1668d4f0b09dd0e929dfeba2c4413e1f17490ccbbbff2ac83cbcb44617be0343"
|
|
SOURCE_DIR="BDH-Calc-$srcGitRev"
|
|
|
|
ARCHITECTURES="all"
|
|
|
|
PROVIDES="
|
|
bdhcalc = $portVersion
|
|
app:bdhcalc = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:g++
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -a objects/bdhcalc $appsDir
|
|
addAppDeskbarSymlink $appsDir/bdhcalc "BDH Calc"
|
|
}
|