{"id":20982430,"url":"https://github.com/juliaaplavin/runbinary.jl","last_synced_at":"2026-04-02T02:06:31.459Z","repository":{"id":238906069,"uuid":"759855909","full_name":"JuliaAPlavin/RunBinary.jl","owner":"JuliaAPlavin","description":"Seamlessly run binaries from BinaryBuilder.","archived":false,"fork":false,"pushed_at":"2025-03-16T12:17:49.000Z","size":6,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-01T02:36:42.751Z","etag":null,"topics":["binary-builder","external-binaries","system-integration","wrapper"],"latest_commit_sha":null,"homepage":"","language":"Julia","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/JuliaAPlavin.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":"2024-02-19T13:18:30.000Z","updated_at":"2025-07-05T21:06:04.000Z","dependencies_parsed_at":"2025-03-13T10:30:47.793Z","dependency_job_id":"b8724cc9-3168-4a7d-ad77-96698706aa3a","html_url":"https://github.com/JuliaAPlavin/RunBinary.jl","commit_stats":null,"previous_names":["juliaaplavin/runbinary.jl"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/JuliaAPlavin/RunBinary.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaAPlavin%2FRunBinary.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaAPlavin%2FRunBinary.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaAPlavin%2FRunBinary.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaAPlavin%2FRunBinary.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JuliaAPlavin","download_url":"https://codeload.github.com/JuliaAPlavin/RunBinary.jl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaAPlavin%2FRunBinary.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31294398,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T01:43:37.129Z","status":"online","status_checked_at":"2026-04-02T02:00:08.535Z","response_time":89,"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":["binary-builder","external-binaries","system-integration","wrapper"],"created_at":"2024-11-19T05:45:37.057Z","updated_at":"2026-04-02T02:06:31.442Z","avatar_url":"https://github.com/JuliaAPlavin.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview\n\nLooking for a simple way to run binaries from the [YggDrasil](https://github.com/JuliaPackaging/Yggdrasil) repo? `RunBinary.jl` has you covered!\n\nUnder the hood, it performs the following steps:\n- Activate a temporary environment, as in `]activate --temp`.\n- Add the required jll package to this env.\n- Import the jll and run the target executable.\n\n\n# Usage from Julia\n\n`RunBinary.jl` exports a single macro, `@run`.\n\n```julia\njulia\u003e using RunBinary\n```\n\nMost basic usage: run a binary from a jll package with `@run \u003cpackage\u003e.\u003cbinary\u003e`. Here, `package` can be specified either with or without the `_jll` suffix.\nFor example,\n```julia\njulia\u003e @run SQLCipher.sqlcipher\n\njulia\u003e @run ImageMagick_jll.identify\n```\n\nCan omit the binary name if the package contains only a single binary:\n```julia\njulia\u003e @run SQLCipher\n```\n\n`RunBinary.jl` passes command-line arguments to the binary:\n\n```julia\njulia\u003e @run ImageMagick_jll.identify `-version`\n```\n\nThe binary is started in the current directory, as if it was ran normally from a shell.\n\n`RunBinary.jl` can be executed via Julia CLI in a reasonably convenient way:\n```bash\n$ julia -e 'using RunBinary; @run ImageMagick_jll.identify `-version`'\n```\n(assuming `RunBinary` is installed in the global Julia environment).\n\n# Command line usage\n\nOn Julia 1.12+, `RunBinary` can be installed as a standalone app:\n```bash\n$ julia -e 'import Pkg; Pkg.Apps.add(\"RunBinary\")'\n```\n\nThen use it directly from the shell:\n```bash\n$ runbinary ImageMagick.identify --version\n$ runbinary p7zip --help\n$ runbinary ImageMagick.convert input.png output.jpg\n```\n\nRun `runbinary` without arguments to see usage help.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuliaaplavin%2Frunbinary.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuliaaplavin%2Frunbinary.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuliaaplavin%2Frunbinary.jl/lists"}