Add recipe for Fossil 1.32

* This addresses the "Ryerson student project problem" regression
* As a result, former recipes will all be removed once a 1.32 build is done
This commit is contained in:
Joseph R. Prostko
2015-03-14 10:57:34 -04:00
parent 69d5bb8df7
commit 69883e2d46

View File

@@ -0,0 +1,53 @@
SUMMARY="Simple, high-reliability, distributed software configuration management"
DESCRIPTION="Fossil is a distributed version control system like Git and \
Mercurial, but Fossil also supports distributed bug tracking, \
distributed wiki, and a distributed blog mechanism all in a single \
integrated package.
Additionally, Fossil also has a built-in and easy-to-use web \
interface that simplifies project tracking and promotes situational \
awareness."
HOMEPAGE="http://www.fossil-scm.org/"
SRC_URI="https://www.fossil-scm.org/download/fossil-src-1.32.tar.gz"
CHECKSUM_SHA256="cd79c333eb9e86fbb8c17bf5cdf31c387e4ab768eede623aed21adfdbcad686e"
REVISION="1"
LICENSE="BSD (2-clause)"
COPYRIGHT="2007 D. Richard Hipp"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
fossil = $portVersion
cmd:fossil = $portVersion
"
REQUIRES="
haiku
lib:libz
openssl >= 1.0.0
"
BUILD_REQUIRES="
haiku_devel
devel:libz >= 1.2.3
openssl_devel >= 1.0.0
"
# tests require cmd:tclsh
BUILD_PREREQUIRES="
cmd:make
cmd:gcc
"
BUILD()
{
./configure --prefix=$prefix
make
}
INSTALL()
{
make install
}
TEST()
{
make test
}