-
-
Notifications
You must be signed in to change notification settings - Fork 13.4k
carla 1.9.9 (new formula) #31560
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
Closed
Closed
carla 1.9.9 (new formula) #31560
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b97c0b4
carla 1.9.9 (new formula)
tresf dcef8ea
carla: fix style guidelines
tresf b401069
carla: remove lingering virtualenv
tresf bb73394
carla: remove ":recommended" per #31510
tresf 5984108
carla: remove obsolete comment, fix style
tresf 35a2e74
carla: add reqeusted corrections
tresf 24cf812
carla: fix deeper test case
tresf bc53835
carla: fix formatting
tresf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
carla: add reqeusted corrections
- Loading branch information
commit 35a2e74d857c2acedd299b9a7ebaa3f0a986d6b3
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,27 +1,28 @@ | ||
| class Carla < Formula | ||
| desc "Audio plugin host supporting LADSPA, LV2, VST2/3, SF2 and more" | ||
| homepage "https://kxstudio.linuxaudio.org/Applications:Carla" | ||
| url "https://github.com/falkTX/carla", :using => :git, :tag => "v1.9.9", :revision => "c03571a9ef95ac0e9564b95347f5de819aa7fb54" | ||
| revision 0 | ||
| url "https://github.com/falkTX/Carla/archive/v1.9.9.tar.gz" | ||
| sha256 "13cff6febb0879190e4e8906f8cbb0e6a61ac1344cd8dbec0331598b59576548" | ||
|
|
||
| depends_on "pkg-config" => :build | ||
| depends_on "fluid-synth" | ||
| depends_on "liblo" | ||
| depends_on "libmagic" | ||
| depends_on :macos => :mavericks | ||
| depends_on "pyqt" | ||
| depends_on "python" | ||
|
|
||
| def install | ||
| args = %W[ | ||
| PREFIX=#{prefix} | ||
| ] | ||
| args = [] | ||
| if ENV.compiler == :clang and MacOS.version <= :mountain_lion | ||
| args << "MACOS_OLD=true" | ||
| end | ||
|
|
||
| system "make" | ||
| system "make", "install", *args | ||
| system "make", *args | ||
| system "make", "install", "PREFIX=#{prefix}" | ||
| end | ||
|
|
||
| test do | ||
| system bin/"carla", "--version" | ||
| system bin/"carla-discovery-native", internal, :all | ||
| end | ||
| end | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any chance of a test that exercises a deeper level of functionality? Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The library author confirms
carla --versionis adequate (it usespyqt, so this will show errors if compilation failed). He's provided me a subsequent test...system bin/"carla-discovery-native", internal, :all. It will be tested locally and added to this PR.