{"id":20704607,"url":"https://github.com/egison/homebrew-egison","last_synced_at":"2026-04-27T05:34:09.048Z","repository":{"id":85908995,"uuid":"110673606","full_name":"egison/homebrew-egison","owner":"egison","description":"Homebrew formula for Egison","archived":false,"fork":false,"pushed_at":"2021-12-21T00:07:46.000Z","size":2468,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-25T17:10:35.006Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/egison.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-11-14T10:06:43.000Z","updated_at":"2021-12-21T00:07:49.000Z","dependencies_parsed_at":"2023-03-13T07:25:40.926Z","dependency_job_id":null,"html_url":"https://github.com/egison/homebrew-egison","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/egison/homebrew-egison","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/egison%2Fhomebrew-egison","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/egison%2Fhomebrew-egison/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/egison%2Fhomebrew-egison/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/egison%2Fhomebrew-egison/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/egison","download_url":"https://codeload.github.com/egison/homebrew-egison/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/egison%2Fhomebrew-egison/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32324548,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-11-17T01:13:06.355Z","updated_at":"2026-04-27T05:34:09.036Z","avatar_url":"https://github.com/egison.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# homebrew-egison\nHomebrew formula to install Egison\n\n## Installation\n\n```sh\n$ brew tap egison/egison\n$ brew install egison egison-tutorial\n```\n### Upgrade\n\n```sh\n$ brew tap egison/egison\n$ brew upgrade egison egison-tutorial\n```\n\n### Uninstallation\n\n```sh\n$ brew remove egison\n$ brew untap egison/egison\n```\n\n* * *\n\n## For developers of this repository\n\n### How to build binary (egison)\n\n```sh\n$ git clone https://github.com/egison/egison.git\n$ cd egison\n$ cabal v2-update\n$ cabal v2-install --only-dependencies --lib\n$ cabal v2-configure\n$ cabal v2-build\n$ _pathsfile=\"$(find \"./dist-newstyle\" -type f -name 'Paths_egison.hs' | head -n 1)\"\n$ perl -i -pe 's@datadir[ ]*=[ ]*.*$@datadir = \"/usr/local/lib/egison\"@' \"$_pathsfile\"\n$ cp \"$_pathsfile\" ./hs-src\n$ cabal v2-build\n$ file $(find \"./dist-newstyle\" -type f -name 'egison')\n```\n\n### How to build binary (egison-tutorial)\n\n```sh\n$ git clone https://github.com/egison/egison-tutorial.git\n$ TAG=\"$(awk '/Version:/{print $NF}' egison-tutorial.cabal )\"\n$ cd egison-tutorial\n$ cabal v2-update\n$ cabal v2-install\n$ cabal v2-configure\n$ cabal v2-build\n$ mkdir -p bin lib/egison-tutorial\n$ cp $(find dist-newstyle/ -type f  -name egison-tutorial | head -n 1) ./bin/egison-tutorial-impl\n$ printf '%s\\n%s\\n' '#!/bin/sh' 'egison_datadir=/usr/local/lib/egison-tutorial egison-tutorial-impl \"$@\"' \u003e ./bin/egison-tutorial\n$ chmod +x ./bin/egison-tutorial\n$ file_name=\"egison-tutorial_$(uname | sed 's/./\\L\u0026/')_$(uname -m)_$TAG.zip\"\n$ git clone --branch $TAG https://github.com/egison/egison.git\n$ cp -rf ./egison/lib ./lib/egison-tutorial/\n$ zip -r \"$file_name\" bin lib\n### =\u003e get zip file\n$ shasum -a 256 \"$file_name\"\n### =\u003e get hash\n```\n\nUpdate `egison-tutorial.rb`\n\n### Update formula\n```sh\n# Edit\n$ brew edit egison/egison/egison\n\n# Check\n$ brew audit --strict egison/egison/egison\n\n# Commit \u0026 Push\n\n$ cd /usr/local/Homebrew/Library/Taps/egison/homebrew-egison/\n$ git add \u003csomething\u003e\n$ git commit -m '\u003csomething\u003e'\n$ git push origin master\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fegison%2Fhomebrew-egison","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fegison%2Fhomebrew-egison","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fegison%2Fhomebrew-egison/lists"}