Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add KDAlgorithms #31

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ jobs:
brew install --build-from-source --formula ./gammaray-qt5.rb
brew install --build-from-source --formula ./kdbindings.rb
brew install --build-from-source --formula ./kdutils.rb
brew install --build-from-source --formula ./kdalgorithms.rb
21 changes: 21 additions & 0 deletions kdalgorithms.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
class Kdalgorithms < Formula
desc "Algorithm helpers - kdalgorithms"
homepage "https://github.com/KDAB/KDAlgorithms"
url "https://github.com/KDAB/KDAlgorithms/archive/357844a5936186cf9042fed0ced08db1cdb92942.tar.gz"
sha256 "6734530b84676d402c85cf31f52631c8787037c59b9b2e515e4afe94cbe51e26"
head "https://github.com/KDAB/KDAlgorithms.git"
version "1.3.0-beta1"

depends_on "cmake" => :build
depends_on "ninja" => :build

def install
system "cmake", ".", "-G", "Ninja", *std_cmake_args
system "ninja"
system "ninja", "install"
end

test do
system "ctest"
end
end
1 change: 1 addition & 0 deletions utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
'kdmactouchbar-qt5.rb': {"repo": "KDAB/KDMacTouchBar"},
'kdbindings.rb': {"repo": "KDAB/KDBindings"},
'kdutils.rb': {"repo": "KDAB/KDUtils"},
'kdalgorithms.rb': {"repo": "KDAB/KDAlgorithms"},
# 'kdstatemachineeditor-qt5.rb': {"repo": "KDAB/KDStateMachineEditor"},
# 'kdstatemachineeditor-qt6.rb': {"repo": "KDAB/KDStateMachineEditor"},
}
Expand Down