{"id":25929791,"url":"https://github.com/arenekosreal/makepkg-action","last_synced_at":"2026-05-04T17:34:44.425Z","repository":{"id":278701457,"uuid":"936493638","full_name":"arenekosreal/makepkg-action","owner":"arenekosreal","description":"Run makepkg in GitHub Action","archived":false,"fork":false,"pushed_at":"2026-01-20T13:50:42.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-20T19:22:42.206Z","etag":null,"topics":["archlinux","github-actions","github-actions-docker","makepkg","multiarch"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"wtfpl","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arenekosreal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2025-02-21T07:21:00.000Z","updated_at":"2026-01-20T13:38:23.000Z","dependencies_parsed_at":"2025-05-01T07:32:23.816Z","dependency_job_id":null,"html_url":"https://github.com/arenekosreal/makepkg-action","commit_stats":null,"previous_names":["arenekosreal/makepkg-action"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/arenekosreal/makepkg-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arenekosreal%2Fmakepkg-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arenekosreal%2Fmakepkg-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arenekosreal%2Fmakepkg-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arenekosreal%2Fmakepkg-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arenekosreal","download_url":"https://codeload.github.com/arenekosreal/makepkg-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arenekosreal%2Fmakepkg-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32617987,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"last_error":"SSL_read: 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":["archlinux","github-actions","github-actions-docker","makepkg","multiarch"],"created_at":"2025-03-03T23:00:02.338Z","updated_at":"2026-05-04T17:34:44.419Z","avatar_url":"https://github.com/arenekosreal.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# makepkg-action\n\nLaunch `makepkg` in an archlinux-like OS.\n\n## Status\n\n[![Test action](https://github.com/arenekosreal/makepkg-action/actions/workflows/test.yml/badge.svg)](https://github.com/arenekosreal/makepkg-action/actions/workflows/test.yml)\n\n## Features\n\n- Multi-arch support\n\n  You can run this action with `x86_64` and `aarch64` architectures.\n\n  How to:\n\n  Set `runs-on` with proper value like `ubuntu-24.04` or `ubuntu-24.04-arm`, but the latter is only available for public repository now.\n\n- No AUR helper like yay/paru\n\n  Everything is built with a minimal archliux-like OS with `base-devel`, `base` and dependencies specified in `PKGBUILD`.\n  Not-in-official-repository dependencies will be installed from a custom repository so pacman can find it directly.\n\n  This means you have to prepare a custom pacman repository yourself to storage those dependencies.\n  You can install `pacman-package-manager` and `libarchive-tools` on Ubuntu 24.04 and later, then you can use `repo-add` like what you do on archlinux.\n  On those elder runners, you have to build and install pacman yourself.\n\n\u003e [!WARNING]\n\u003e Singnatures of packages are not checked. Please ensure you are using those extra dependencies from trusted source.\n\n## Inputs\n\n```yaml\n  startdir:\n    description: Where is the directory contains PKGBUILD\n    required: false\n    default: startdir\n  pkgdest:\n    description: Where to storage built packages\n    required: false\n    default: pkgdest\n  srcdest:\n    description: Where to storage downloaded sources\n    required: false\n    default: srcdest\n  logdest:\n    description: Where to storage build logs\n    required: false\n    default: logdest\n  args:\n    description: The arguments to makepkg.\n    required: false\n    default: --log\n  repo:\n    description: Where to storage extra dependencies\n    required: false\n    default: repo\n  repo-name:\n    description: The name of repository\n    required: false\n    default: repo\n  preserve-env:\n    description: Comma-seperated environment variable list to be passed to makepkg.\n    required: false\n```\n\n## Examples\n\n```yaml\n# Just build the PKGBUILD in ${{ github.workspace }}/startdir\n- uses: arenekosreal/makepkg-action@v0.4.0\n\n# Build the PKGBUILD in directory specified\n- uses: arenekosreal/makepkg-action@v0.4.0\n  with:\n    startdir: example # build the PKGBUILD in ${{ github.workspace }}/example\n    \n# Generate .SRCINFO\n- uses: arenekosreal/makepkg-action@v0.4.0\n  with:\n    startdir: example\n    args: --printsrcinfo\n    stdout: example/.SRCINFO\n```\n\n## FAQ\n\n- Why I need this even ubuntu has `pacman`?\n\n  Trust me, you do not want to mix files managed by pacman and apt-get together.\n\n- Any extra tips?\n\n  If you want to cache generated directory like `srcdest`, etc, you need to run `sudo chown -R $(id -u):$(id -g) srcdest` before caching it.\n  Or you will find that your files of that directory's owner may become root, and there may have issue when recovering cache.\n\n  See also:\n\n  https://github.com/actions/runner/issues/1282 \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farenekosreal%2Fmakepkg-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farenekosreal%2Fmakepkg-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farenekosreal%2Fmakepkg-action/lists"}