mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
55 lines
1.1 KiB
Bash
55 lines
1.1 KiB
Bash
SUMMARY="A tool for distributed software configuration management"
|
|
DESCRIPTION="Fossil is a simple, high-reliability, 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/"
|
|
SOURCE_URI="https://www.fossil-scm.org/download/fossil-src-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="53a6b83e878feced9ac7705f87e5b6ea82727314e3e19202ae1c46c7e4dba49f"
|
|
REVISION="2"
|
|
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
|
|
lib:libssl
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libz
|
|
devel:libssl
|
|
"
|
|
# tests require cmd:tclsh
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:gcc
|
|
"
|
|
|
|
SOURCE_DIR="fossil-src-$portVersion"
|
|
|
|
BUILD()
|
|
{
|
|
./configure --prefix=$prefix
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make test
|
|
}
|