Skip to content

Commit

Permalink
lbdb: use checksummed patches
Browse files Browse the repository at this point in the history
  • Loading branch information
jacknagel committed Mar 17, 2014
1 parent 26a9235 commit 72b0184
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions Formula/lbdb.rb
Expand Up @@ -10,14 +10,21 @@ class Lbdb < Formula

head 'https://github.com/tgray/lbdb.git'

def patches
p = []
if MacOS.version >= :mountain_lion
p << 'https://github.com/chrisbarrett/lbdb/commit/db0440670194568bbfe2137fc063eb30cf26cb2a.diff'
p << 'https://github.com/chrisbarrett/lbdb/commit/b89ac6ee50e2c03c32635269d9818c045b0abb6f.diff'
p << 'https://github.com/chrisbarrett/lbdb/commit/6cbef5feb4fd921deb08eb52b4169647909946ae.diff'
if MacOS.version >= :mountain_lion
patch do
url "https://github.com/chrisbarrett/lbdb/commit/db0440670194568bbfe2137fc063eb30cf26cb2a.diff"
sha1 "8de0fdcfa5cd73a456b150e19cdad572aa8f0d7c"
end

patch do
url "https://github.com/chrisbarrett/lbdb/commit/b89ac6ee50e2c03c32635269d9818c045b0abb6f.diff"
sha1 "574268f5d7cce1a6dd26e973ff96787c322597a3"
end

patch do
url "https://github.com/chrisbarrett/lbdb/commit/6cbef5feb4fd921deb08eb52b4169647909946ae.diff"
sha1 "fe7024dc7576e0d885335a4829edf8dde09b22ea"
end
p
end

def install
Expand Down

0 comments on commit 72b0184

Please sign in to comment.