mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
31 lines
576 B
Plaintext
31 lines
576 B
Plaintext
DESCRIPTION="GMP - GNU Multiple Precision Arithmetic Library"
|
|
HOMEPAGE="http://gmplib.org/"
|
|
SRC_URI="ftp://ftp.gmplib.org/pub/gmp-4.3.2/gmp-4.3.2.tar.bz2"
|
|
CHECKSUM_MD5="dd60683d7057917e34630b4a787932e8"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD {
|
|
cd gmp-4.3.2
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
automake --add-missing
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd gmp-4.3.2
|
|
make install
|
|
}
|
|
|
|
TEST {
|
|
cd gmp-4.3.2
|
|
make check
|
|
}
|
|
|
|
LICENSE="GNU GPL v3
|
|
GNU LGPL v3"
|
|
COPYRIGHT="1991-2009 Free Software Foundation, Inc."
|