mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-18 17:50:06 +02:00
63 lines
1.5 KiB
Bash
63 lines
1.5 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, distributed forums, 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="https://www.fossil-scm.org/"
|
|
COPYRIGHT="2007 D. Richard Hipp"
|
|
LICENSE="BSD (2-clause)"
|
|
REVISION="1"
|
|
tag="66ee0beb9b47d827bde533fe6a1fb2ead4ceb1936468881b4fb621bd6bdfd862"
|
|
SOURCE_URI="https://www.fossil-scm.org/home/tarball/$tag/fossil-src-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="b90c40beb75308b0eba46b5add6e54a7a9e65ac90ce86ec8d78ae2a4bb8bae60"
|
|
SOURCE_DIR="fossil-src-$portVersion"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
fossil$secondaryArchSuffix = $portVersion
|
|
cmd:fossil = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libssl$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libssl$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
TEST_REQUIRES="
|
|
cmd:tclsh
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
# not an autotools configure
|
|
./configure --prefix=$prefix
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
install -d $manDir/man1
|
|
install -t $manDir/man1 -m 444 fossil.1
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make test
|
|
}
|