mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 13:38:52 +02:00
24 lines
651 B
Plaintext
24 lines
651 B
Plaintext
DESCRIPTION="graphviz - Open Source Graph Visualization Software."
|
|
HOMEPAGE="http://www.graphviz.org/"
|
|
SRC_URI="http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.26.3.tar.gz"
|
|
CHECKSUM_MD5="6f45946fa622770c45609778c0a982ee"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD {
|
|
cd graphviz-2.26.3
|
|
libtoolize --force --copy --install
|
|
autoconf
|
|
./configure --prefix=/boot/common --disable-shared --enable-static --disable-perl CFLAGS="-O0" LDFLAGS="-L/boot/common/lib -liconv"
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd graphviz-2.26.3
|
|
make install
|
|
cd ${DESTDIR}/boot/common/bin
|
|
ln -s dot_static dot
|
|
}
|
|
LICENSE="CPL v1.0"
|
|
COPYRIGHT="1994-2010 AT&T Corp."
|