mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
SUMMARY="A graphics programming language"
|
|
DESCRIPTION="Gri is a language for scientific graphics programming. The word \
|
|
'language' is important: Gri is command-driven, not point/click. Gri can make \
|
|
x-y graphs, contour graphs, and image graphs, in PostScript and (someday) SVG \
|
|
formats. Control is provided over all aspects of drawing, e.g. line widths, \
|
|
colors, and fonts. A TeX-like syntax provides common mathematical symbols."
|
|
HOMEPAGE="http://gri.sourceforge.net/"
|
|
COPYRIGHT="2002-2011 Dan Kelley and Peter Galbraith"
|
|
LICENSE="GNU GPL v1"
|
|
REVISION="1"
|
|
SOURCE_URI="http://downloads.sourceforge.net/project/gri/gri/2.12.23/gri-2.12.23.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fgri%2Ffiles%2F&ts=1356118794&use_mirror=ignum"
|
|
CHECKSUM_SHA256="a24e703f30250ed705c0a242aa59a24748259ea7355fca52152f367f45bfd2e7"
|
|
|
|
ARCHITECTURES="?all x86_gcc2"
|
|
|
|
PROVIDES="
|
|
gri = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:make
|
|
cmd:perl
|
|
devel:libreadline
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure --enable-shared
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
addAppsDeskbarSymlink $appsDir/Gri
|
|
}
|