Skip to content

Commit

Permalink
Add KDBindings
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Martins committed Nov 19, 2024
1 parent c7de87f commit d23d261
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions kdbindings.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
class Kdbindings < Formula
desc "Reactive programming & data binding in C++"
homepage "https://github.com/KDAB/KDBindings"
url "https://github.com/KDAB/KDBindings/archive/refs/tags/v1.1.0.tar.gz"
sha256 "0ee07cb3e2ec4f5688b4b2971c42e5a4f4a41c7bf4aa130e6b118bea4b6340ab"
head "https://github.com/KDAB/KDBindings.git"

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

def install
system "cmake", ".", "-G", "Ninja", "-DKDBindigs_TESTS=OFF", "-DKDBindings_EXAMPLES=OFF", *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 @@ -16,6 +16,7 @@
'kdreports-qt6.rb': {"repo": "KDAB/KDReports"},
'gammaray-qt5.rb': {"repo": "KDAB/Gammaray"},
'kdmactouchbar-qt5.rb': {"repo": "KDAB/KDMacTouchBar"},
'kdbindings.rb': {"repo": "KDAB/KDBindings"},
# 'kdstatemachineeditor-qt5.rb': {"repo": "KDAB/KDStateMachineEditor"},
# 'kdstatemachineeditor-qt6.rb': {"repo": "KDAB/KDStateMachineEditor"},
}
Expand Down

0 comments on commit d23d261

Please sign in to comment.