{"id":20048442,"url":"https://github.com/aggstam/librewolf-source-installer","last_synced_at":"2026-02-07T23:02:56.927Z","repository":{"id":204130183,"uuid":"711178647","full_name":"aggstam/librewolf-source-installer","owner":"aggstam","description":"A helper script extracting and installing a packaged Liberwolf source tar archive.","archived":false,"fork":false,"pushed_at":"2025-05-18T18:29:28.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-25T21:50:41.963Z","etag":null,"topics":["librewolf"],"latest_commit_sha":null,"homepage":"","language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aggstam.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}},"created_at":"2023-10-28T12:56:50.000Z","updated_at":"2025-05-18T18:29:31.000Z","dependencies_parsed_at":"2024-01-10T19:32:01.302Z","dependency_job_id":"7927c02f-4da5-4205-93d7-fa51809c69e3","html_url":"https://github.com/aggstam/librewolf-source-installer","commit_stats":null,"previous_names":["aggstam/librewolf-source-installer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aggstam/librewolf-source-installer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Flibrewolf-source-installer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Flibrewolf-source-installer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Flibrewolf-source-installer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Flibrewolf-source-installer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aggstam","download_url":"https://codeload.github.com/aggstam/librewolf-source-installer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Flibrewolf-source-installer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29211586,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T22:58:45.823Z","status":"ssl_error","status_checked_at":"2026-02-07T22:58:45.272Z","response_time":63,"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":["librewolf"],"created_at":"2024-11-13T11:43:52.649Z","updated_at":"2026-02-07T23:02:56.914Z","avatar_url":"https://github.com/aggstam.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# librewolf-source-installer\nA helper script extracting and installing a packaged [Liberwolf](https://librewolf.net/) source tar archive.\n\u003cbr\u003e\nWe are using [source](https://codeberg.org/librewolf/source) repo as a `git` submodule, but you can use this\nscript to extract from another path.\n\n## Prerequisites\nIf you want to use the Librewolf source repo to build and package Librewolf yourself(the correct way),\nyou can use the `source` submodule folder.\n\u003cbr\u003e\nOn initial pull:\n```shell\n$ git submodule update --init --recursive\n```\nTo pull updates:\n```shell\n$ git pull --recurse-submodules\n```\nThen, you can follow their [build](https://codeberg.org/librewolf/source#building-with-this-repository)\ninstructions, mirrored in the following build section, along with corresponding `make` targets, for convenience.\n\u003cbr\u003e\nAdditionally, a `docker` builder image is provided for building the source code,\nwithout setting up a development environment.\n### Build source\n#### Initial pull\n```shell\n$ cd source\n$ make dir\n$ make bootstrap\n```\nor\n```shell\n$ make bootstrap-source\n```\n#### Build and package\n```shell\n$ cd source\n$ make build\n$ make package\n```\nor\n```shell\n$ make build-source\n```\n#### Using docker\nOn initial pull, we can create the `docker` builder image and bootstrap the source repo:\n```shell\n$ docker build . -t librewolf-source-installer:builder -f ./docker/builder.Dockerfile\n$ docker run -it -v .:/repo librewolf-source-installer:builder /bin/sh -c \"make bootstrap-source\"\n```\nAfter `docker` builder has been created and bootstrapped, we can build the source code:\n```shell\n$ docker run -it -v .:/repo librewolf-source-installer:builder /bin/sh -c \"make build-source\"\n```\nKeep in mind that `docker` uses `root` as its user, so `source` folder access rights will be moved from your user.\n\n## Usage\nScript provides the following Make targets:\n| Target         | Description                                |\n|----------------|--------------------------------------------|\n| `build-folder` | Generate build folder                      |\n| `clean`        | Remove build artifacts                     |\n| `extract`      | Extract configured/provided archive        |\n| `install`      | Install extracted artifacts                |\n| `desktop`      | Install .desktop file                      |\n| `firejail`     | Install firejail configuration             |\n| `uninstall`    | Remove installed artifacts from the system |\n\nBased on the above table, the basic usage is:\n```shell\n$ make extract install\n```\nAfter that, you can generate the corresponding .desktop file and/or firejail\nconfiguration using:\n```shell\n$ make desktop\n$ make firejail\n```\nObviously you can combine them all together in a single command:\n```shell\n$ make extract install desktop firejail\n```\nIf you are using a different archive, you can pass it using `TAR={YOUR_TAR_PATH_HERE]`\nbuild argument, like:\n```shell\n$ make extract install TAR=tar_downloaded_from_sus_site_def_not_malicious.tar.bz2\n```\n\n## Notes\n### Source folder\nIf you are using the source folder to build Librewolf, you should remove old packaged\nversions, once you pulled and builded a newer one, to preserve your disk space.\n### Firejail\nA `librewolf.local` `firejail` configuration file is provided.\n\n## Credits\nMassive thanks to the Librewolf team for making such an awesome browser!\n\u003cbr\u003e\nRepo icon and .desktop file where directly copied from Librewolf assets.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faggstam%2Flibrewolf-source-installer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faggstam%2Flibrewolf-source-installer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faggstam%2Flibrewolf-source-installer/lists"}