Skip to content

Commit

Permalink
Add KDAlgorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Martins committed Nov 21, 2024
1 parent 34213ac commit 1fb506a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
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

0 comments on commit 1fb506a

Please sign in to comment.