mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
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="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
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./configure --prefix=$prefix
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make test
|
|
}
|