amath: new recipe (#1245)

This commit is contained in:
rainlance
2017-03-24 08:00:01 +01:00
committed by Jérôme Duval
parent 7b222df484
commit 3e8e73a560

View File

@@ -0,0 +1,48 @@
SUMMARY="Simple command line calculator"
DESCRIPTION="amath features a case sensitive command line interface, internal
IEEE 754 calculations with 15 significant digits, calculations with real and
complex numbers, variables and user defined functions, logarithmic and exponential \
functions, trigonometric and hyperbolic function and selected mathematical \
constants and rounding functions."
HOMEPAGE="http://amath.innolan.net"
LICENSE="BSD (2-clause)"
COPYRIGHT="2014-2017 Carsten Sonne Larsen"
REVISION="1"
SOURCE_URI="http://suyai.innolan.net/amath-$portVersion.tar.gz"
CHECKSUM_SHA256="6faf678ef7121aef6b5e63641218b1c826d02c58c13fcf9d59ee9fe07f21fe70"
ARCHITECTURES="x86 x86_gcc2"
PROVIDES="
amath = $portVersion
cmd:amath
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
"
BUILD()
{
runConfigure ./configure --without-stdc++ LDFLAGS=-lbe
make static $jobArgs
}
INSTALL()
{
mkdir -p $binDir $manDir/man1
cp amath $binDir/amath
cp amath.1 $manDir/man1/amath.1
}
TEST()
{
make test
}