mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 16:20:08 +02:00
When trying to `pkgman install trackgit`, I was getting the error: problem 1: nothing provides lib:libgit2>=1.4.3 needed by trackgit-1.0.0~git-3 Additionally, attempting to rebuild locally, build was failing with an error about the `git_status_options` struct not having a "baseline" field (it was pulling in the `libgit2_25-0.25.1-3` packages).
48 lines
1.0 KiB
Bash
48 lines
1.0 KiB
Bash
SUMMARY="Tracker add-on for git"
|
|
DESCRIPTION="Tracker Addon for Git Version Control System. \
|
|
TrackGit provides user with GUIs for various Git commands. The implementation \
|
|
was done using LibGit2. TrackGit uses the Dynamic population of menu."
|
|
HOMEPAGE="https://github.com/Hrily/TrackGit"
|
|
COPYRIGHT="2018 Hrishi Hiraskar
|
|
2021 HaikuArchives Team"
|
|
LICENSE="MIT"
|
|
REVISION="4"
|
|
srcGitRev="b676c5e0ed241a88ed358f0dc73cfa3fa065d76e"
|
|
SOURCE_URI="https://github.com/HaikuArchives/TrackGit/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="e5dbef35b28e6dfffd86ccc26f9582fdb9ae64325c09483d56b27e52ae303a23"
|
|
SOURCE_FILENAME="TrackGit-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="TrackGit-$srcGitRev"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
|
|
PROVIDES="
|
|
trackgit = $portVersion
|
|
app:TrackGit = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libgit2
|
|
lib:libssh2
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libgit2 >= 1.5.0
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $addOnsDir/Tracker
|
|
cp -a objects/TrackGit $addOnsDir/Tracker
|
|
}
|