{"id":15435199,"url":"https://github.com/drptbl/fb-homebrew-tap","last_synced_at":"2026-05-12T09:31:32.467Z","repository":{"id":88033426,"uuid":"42405692","full_name":"drptbl/fb-homebrew-tap","owner":"drptbl","description":"a Homebrew tap for software maintained by Facebook","archived":false,"fork":false,"pushed_at":"2015-09-02T20:10:13.000Z","size":143,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-21T14:42:08.318Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/drptbl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-09-13T17:32:59.000Z","updated_at":"2015-12-05T11:17:23.000Z","dependencies_parsed_at":"2023-02-27T23:01:50.547Z","dependency_job_id":null,"html_url":"https://github.com/drptbl/fb-homebrew-tap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/drptbl/fb-homebrew-tap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drptbl%2Ffb-homebrew-tap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drptbl%2Ffb-homebrew-tap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drptbl%2Ffb-homebrew-tap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drptbl%2Ffb-homebrew-tap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/drptbl","download_url":"https://codeload.github.com/drptbl/fb-homebrew-tap/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drptbl%2Ffb-homebrew-tap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32932317,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-12T09:19:52.626Z","status":"ssl_error","status_checked_at":"2026-05-12T09:17:33.438Z","response_time":102,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-01T18:43:04.852Z","updated_at":"2026-05-12T09:31:32.452Z","avatar_url":"https://github.com/drptbl.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"Facebook Homebrew Tap\n=====================\n\nThis is a [Homebrew][brew] tap for formulae for software developed by Facebook.\n\n\nSetup\n-----\n\nUsing these formulae requires Homebrew, which in turn requires Xcode. If you\nhave not yet installed Homebrew, a quick summary is at the end of this\ndocument.\n\nOnce homebrew is installed, simply run:\n\n    brew tap facebook/fb-homebrew-tap https://github.com/facebook/fb-homebrew-tap\n\nSome of these formulae may require OS X 10.10 (Yosemite) or higher.\n\n\nUse\n---\n\nTo install software, just use `brew install` with the name of the formula. You\nmay wish to run `brew update` before hand to get the latest version of the\nformulae. For example, to install the latest version of the thrift compiler:\n\n    brew update\n    brew install fbthrift-compiler\n\nTo upgrade software:\n\n    brew update\n    brew upgrade    # upgrade all software installed with Homebrew\n    brew upgrade fbthrift-compiler   # update just the thrift compiler\n\n\nContributing\n------------\n\nWe use GitHub's [issue tracker][issue] for bug reports or feature requests.\n\nTo do development on these formulae, first fork the repository on GitHub. Add\nyour fork as a remote to your local clone:\n\n    cd $(brew --prefix)/Library/Taps/facebook/homebrew-fb-homebrew-tap\n    git remote add me git@github.com:YOUR_GITHUB_USERNAME/fb-homebrew-tap.git\n    git fetch me\n\nTo propose changes, push to your fork (e.g. with `git push me +master`) and\nsubmit pull request on GitHub.\n\nIf you do not work for Facebook, you will need to [submit a Contributor License\nAgreement (\"CLA\")][cla]. You only need to do this once to work on any of\nFacebook's open source projects.\n\nWe follow Homebrew's [standard coding style][style].\n\n\nAppendix: overview of installing Homebrew\n-----------------------------------------\n\nThe Homebrew developers suggest installing Homebrew at `/usr/local` to maximize\ncompatibility with existing software. To do so, follow the instructions on\n[their website][brew].\n\nThis author prefers `/opt/homebrew`, finding that it works well enough in\npractice and keeps a cleaner separation between other software which might use\n`/usr/local`. To install at `/opt/homebrew`, you can use:\n\n    sudo mkdir /opt/homebrew\n    sudo chown `whoami` /opt/homebrew\n    curl -sSLf -o homebrew-installer https://raw.githubusercontent.com/Homebrew/install/master/install\n    perl -pi -e s,/usr/local,/opt/homebrew, homebrew-installer\n    ruby homebrew-installer\n    rm homebrew-installer\n    echo '$PATH=\"/opt/homebrew/bin:/opt/homebrew/sbin:$PATH\"' \u003e\u003e ~/.bashrc\n\n\nReferences\n----------\n`brew help`, `man brew`, or the Homebrew [documentation][].\n\n[brew]: http://brew.sh/\n[issue]: https://github.com/facebook/fb-homebrew-tap/issues\n[cla]: https://code.facebook.com/cla\n[style]: https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Formula-Cookbook.md\n[documentation]: https://github.com/Homebrew/homebrew/tree/master/share/doc/homebrew#readme\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrptbl%2Ffb-homebrew-tap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrptbl%2Ffb-homebrew-tap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrptbl%2Ffb-homebrew-tap/lists"}