mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 12:10:06 +02:00
34 lines
582 B
Plaintext
34 lines
582 B
Plaintext
DESCRIPTION="GMP - GNU Multiple Precision Arithmetic Library"
|
|
HOMEPAGE="http://gmplib.org/"
|
|
SRC_URI="ftp://ftp.gmplib.org/pub/gmp-5.0.1/gmp-5.0.1.tar.bz2"
|
|
CHECKSUM_MD5="6bac6df75c192a13419dfd71d19240a7"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD()
|
|
{
|
|
cd gmp-5.0.1
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
automake --add-missing
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd gmp-5.0.1
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd gmp-5.0.1
|
|
make check
|
|
}
|
|
|
|
LICENSE="GNU GPL v3
|
|
GNU LGPL v3"
|
|
COPYRIGHT="1991-2010 Free Software Foundation, Inc."
|