{"id":15748457,"url":"https://github.com/karras/aur-package-builds","last_synced_at":"2025-04-30T09:17:07.561Z","repository":{"id":41935055,"uuid":"441299839","full_name":"karras/aur-package-builds","owner":"karras","description":"Arch Linux AUR package builds, published via GitHub Releases.","archived":false,"fork":false,"pushed_at":"2024-11-11T19:34:34.000Z","size":82,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-11T20:28:17.466Z","etag":null,"topics":["archlinux","aur","aur-packages","greetd","package-builder","packages","wayfire"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/karras.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}},"created_at":"2021-12-23T21:29:58.000Z","updated_at":"2024-11-11T19:34:38.000Z","dependencies_parsed_at":"2024-10-25T04:19:14.028Z","dependency_job_id":null,"html_url":"https://github.com/karras/aur-package-builds","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karras%2Faur-package-builds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karras%2Faur-package-builds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karras%2Faur-package-builds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karras%2Faur-package-builds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/karras","download_url":"https://codeload.github.com/karras/aur-package-builds/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229498636,"owners_count":18082477,"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":["archlinux","aur","aur-packages","greetd","package-builder","packages","wayfire"],"created_at":"2024-10-04T05:41:49.279Z","updated_at":"2024-12-13T06:05:38.813Z","avatar_url":"https://github.com/karras.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AUR Package Builds\n\nArch Linux AUR package builds, published via GitHub Releases.\n\n[![Build \u0026 Publish](https://github.com/karras/aur-package-builds/actions/workflows/build-publish.yml/badge.svg)](https://github.com/karras/aur-package-builds/actions/workflows/build-publish.yml)\n\n## Packages\n\nAmong others the following packages are provided (see\n[packages.lst](./packages.lst)):\n\n* [google-chrome](https://aur.archlinux.org/packages/google-chrome)\n* [oidc-agent](https://aur.archlinux.org/packages/oidc-agent)\n* [wayfire](https://aur.archlinux.org/packages/wayfire)\n* [wayland-logout](https://aur.archlinux.org/packages/wayland-logout)\n* [wf-config](https://aur.archlinux.org/packages/wf-config)\n* [wlay-git](https://aur.archlinux.org/packages/wlay-git)\n\n### Deprecated\n\nThe packages below were at some point built and provided by this project but\nthen deprecated, either because they are no longer needed, the upstream project\nis unmaintained or official builds are being provided:\n\n* [greetd](https://archlinux.org/packages/extra/x86_64/greetd)\n* [greetd-gtkgreet](https://archlinux.org/packages/extra/x86_64/greetd-gtkgreet/)\n* [wayfire-git](https://aur.archlinux.org/packages/wayfire-git)\n\n## Repositories\n\nThe built packages are provided as pacman repositories in the form of [GitHub\nreleases](https://github.com/karras/aur-package-builds/releases). This makes it\npossible to conveniently install and update the packages directly without\ndownloading them first.\n\nAll packages and the repository databases are signed thus the [GPG\nkey](./builder_public_key.asc) should be imported and trusted first (see\ninstructions below).\n\nThere are two types of repositories to choose from:\n\n* **[latest](https://github.com/karras/aur-package-builds/releases/tag/latest)**\n\n    Provides weekly updates of the most recent version of all packages\n\n* **[stable](https://github.com/karras/aur-package-builds/releases)**\n\n    All repositories (i.e. releases) with a semantic version are frozen and\n    considered stable, they will not be updated automatically. Instead new\n    releases will be created to update the packages.\n\n## Usage\n\nFollow the below steps to install any of the available packages:\n\n* Import and trust the [package signing key](./builder_public_key.asc):\n  ```sh\n  pacman-key --add builder_public_key.asc\n  pacman-key --lsign-key 25267573FD638312C5EBE4C40C758F9503EDE7AF\n  ```\n\n* Add the repository to `/etc/pacman.conf` (replace `$RELEASE` in the URL with\n  the desired version or choose `latest`):\n  ```ini\n  # Example latest repository\n  [karras]\n  Server = https://github.com/karras/aur-package-builds/releases/download/latest\n\n  # Example frozen repository\n  [karras]\n  Server = https://github.com/karras/aur-package-builds/releases/download/$RELEASE\n  ```\n\n* Refresh the local repository databases:\n  ```sh\n  pacman -Sy\n  ```\n\n* Install the required packages (e.g. `wayfire-git`):\n  ```sh\n  pacman -S wayfire-git\n  ```\n\n## License\n\nSee [LICENSE](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkarras%2Faur-package-builds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkarras%2Faur-package-builds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkarras%2Faur-package-builds/lists"}