{"id":25019857,"url":"https://github.com/kei-g/wol","last_synced_at":"2026-05-09T17:35:03.491Z","repository":{"id":39967631,"uuid":"365423173","full_name":"kei-g/wol","owner":"kei-g","description":"Wake-On-LAN Client","archived":false,"fork":false,"pushed_at":"2023-11-14T16:31:31.000Z","size":293,"stargazers_count":0,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-05T11:52:19.058Z","etag":null,"topics":["c","docker","docker-image","wake-on-lan"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/snowstep/wol/","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kei-g.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2021-05-08T05:02:35.000Z","updated_at":"2023-01-31T18:53:22.000Z","dependencies_parsed_at":"2025-02-05T11:51:55.034Z","dependency_job_id":"0b02aaac-384e-4eb5-8cdf-5049450819e8","html_url":"https://github.com/kei-g/wol","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kei-g%2Fwol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kei-g%2Fwol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kei-g%2Fwol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kei-g%2Fwol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kei-g","download_url":"https://codeload.github.com/kei-g/wol/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246301996,"owners_count":20755514,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["c","docker","docker-image","wake-on-lan"],"created_at":"2025-02-05T11:51:46.244Z","updated_at":"2026-05-09T17:34:58.468Z","avatar_url":"https://github.com/kei-g.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wol [![githuhb][github-repo-image]][github-repo-url] [![license][license-image]][license-url] [![docker][docker-image]][docker-url]\n\n`wol` - Wake-On-LAN Client\n\n## CI Status\n\n| Workflow Name | Status |\n|-|-|\n| **Build** | [![GitHub CI (Build)][github-build-image]][github-build-url] |\n| **CodeQL** | [![GitHub CI (CodeQL)][github-codeql-image]][github-codeql-url] |\n| **MinGW** | [![GitHub CI (MinGW)][github-mingw-image]][github-mingw-url] |\n\n## How to use\n\n```shell\ndocker run --rm snowstep/wol 00:00:5e:00:53:00\n```\n\n## How to build\n\n### Install packages to build\n\nTo build with clang, on linux :penguin:,\n\n```shell\napt-get install automake clang make\n```\n\nor, to build with gcc, on linux :penguin:,\n\n```shell\napt-get install automake gcc make\n```\n\n### Pre-configure\n\n```shell\naclocal\nautoheader\nautomake -a -c\nautoconf\n```\n\n### with default cc\n\n```shell\n./configure --disable-dependency-tracking \u0026\u0026 make\n```\n\n### with clang\n\n```shell\n./configure --disable-dependency-tracking CC=clang LD=clang \u0026\u0026 make\n```\n\n### without symbols for debug\n\n```shell\n./configure --disable-dependency-tracking CC=clang LD=clang LDFLAGS=\"-Wl,-s\" \u0026\u0026 make\n```\n\n### with optimizations\n\n```shell\n./configure --disable-dependency-tracking CC=clang CFLAGS=\"-Oz -march=native\" LD=clang LDFLAGS=\"-Wl,-s\" \u0026\u0026 make\n```\n\n## How to install\n\n```shell\nmake install\n```\n\n## Usage\n\n```shell\nwol 00:00:5e:00:53:00\n```\n\nor binding specific NIC,\n\n```shell\nwol --bind=203.0.113.193 00:00:5e:00:53:00\n```\n\n## License\n\nThe source codes and documentation in this project are released under the [BSD-3-Clause License](https://github.com/kei-g/wol/blob/main/COPYING).\n\n## Contributions\n\nContributions are welcome! See [Contributor's Guide](https://github.com/kei-g/wol/blob/main/CONTRIBUTING.md).\n\n## Code of Conduct\n\n:clap: Be nice. See [our code of conduct](https://github.com/kei-g/wol/blob/main/CODE_OF_CONDUCT.md).\n\n[docker-image]:https://img.shields.io/docker/v/snowstep/wol?logo=docker\n[docker-url]:https://hub.docker.com/r/snowstep/wol\n[github-build-image]:https://github.com/kei-g/wol/actions/workflows/build.yml/badge.svg\n[github-build-url]:https://github.com/kei-g/wol/actions/workflows/build.yml\n[github-codeql-image]:https://github.com/kei-g/wol/actions/workflows/codeql.yml/badge.svg\n[github-codeql-url]:https://github.com/kei-g/wol/actions/workflows/codeql.yml\n[github-mingw-image]:https://github.com/kei-g/wol/actions/workflows/mingw.yml/badge.svg\n[github-mingw-url]:https://github.com/kei-g/wol/actions/workflows/mingw.yml\n[github-repo-image]:https://img.shields.io/badge/github-kei--g%2Fwol-brightgreen?logo=github\n[github-repo-url]:https://github.com/kei-g/wol\n[license-image]:https://img.shields.io/github/license/kei-g/wol\n[license-url]:https://opensource.org/licenses/BSD-3-Clause\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkei-g%2Fwol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkei-g%2Fwol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkei-g%2Fwol/lists"}