mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
31 lines
647 B
Plaintext
31 lines
647 B
Plaintext
DESCRIPTION="
|
|
CLN is a library for efficient computations with all kinds of numbers in \
|
|
arbitrary precision.
|
|
"
|
|
HOMEPAGE="http://www.ginac.de/CLN/"
|
|
SRC_URI="http://www.ginac.de/CLN/cln-1.3.2.tar.bz2"
|
|
CHECKSUM_MD5="d897cce94d9c34d106575ed4ec865d71"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
MESSAGE="This port only builds with gcc4."
|
|
BUILD()
|
|
{
|
|
cd cln-1.3.2
|
|
autoreconf -i
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--datarootdir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd cln-1.3.2
|
|
make install
|
|
}
|
|
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="Bruno Haible 1988-2008
|
|
Alexei Sheplyakov 2008
|
|
Richard Kreckel 2000-2009"
|