aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-11-02 21:16:24 +0100
committerTeddy Wing2018-11-02 21:16:24 +0100
commitc7e2eaa7932136388a33b1f7334fe253e8ae834b (patch)
treedebc8879d342e095e703d7a59ee8ca693a699b1f
parent9075ddcdf74dd8de070a99cf801c851e383050c4 (diff)
downloadDomeKey-c7e2eaa7932136388a33b1f7334fe253e8ae834b.tar.bz2
pkg/dome-key.in.rb: Set dependency on Mac OS X 10.7
While the Objective-C/Cocoa code is designed to work on at least 10.6, the Rust code requires >=10.7, as something in Rust, maybe the standard library, requires at least that version of Mac OS.
-rw-r--r--pkg/dome-key.in.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/dome-key.in.rb b/pkg/dome-key.in.rb
index b2bfa7c..686fc90 100644
--- a/pkg/dome-key.in.rb
+++ b/pkg/dome-key.in.rb
@@ -5,6 +5,9 @@ class DomeKey < Formula
url ""
sha256 "${SHA256}"
+ # Rust code requires at least 10.7
+ depends_on :macos => :lion
+
def install
bin.install "dome-key"
man1.install "dome-key.1"