aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-lfs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/git-lfs.rb')
-rw-r--r--Library/Formula/git-lfs.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/git-lfs.rb b/Library/Formula/git-lfs.rb
new file mode 100644
index 000000000..13807b5e5
--- /dev/null
+++ b/Library/Formula/git-lfs.rb
@@ -0,0 +1,17 @@
+class GitLfs < Formula
+ homepage "https://github.com/github/git-lfs"
+ url "https://github.com/github/git-lfs/archive/v0.5.0.tar.gz"
+ sha256 "70f17a594d51d1b92d2354a729f00546e9c1b2c93ff3b752e185c650c5442d06"
+
+ depends_on "go" => :build
+
+ def install
+ system "./script/bootstrap"
+ bin.install "bin/git-lfs"
+ end
+
+ test do
+ system "git", "lfs", "track", "test"
+ assert_match(/^test filter=lfs/, File.read(".gitattributes"))
+ end
+end