Skip to content

Commit

Permalink
add pkgbuild ext
Browse files Browse the repository at this point in the history
  • Loading branch information
noraj committed Aug 15, 2024
1 parent 45240bd commit 7357f17
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Firefox for Android support [#35](https://github.com/noraj/firefox-extension-arch-search/pull/35) (thanks @sangsatori)
- Remove extensions related to the old bug tracker and introduce an extension for the new one
- New extension to search for Security Advisories
- New extension to search for PKGBUILD files

## [1.0.5]

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ ArchLinux Forum (by author) Search | `alforuma` | [AMO][arch-forum-a]
ArchLinux Forum (by keywords) Search | `alforumk` | [AMO][arch-forum-k]
ArchLinux Manual Page Search | `alman` | [AMO][arch-man]
ArchLinux Security Search | `alsec` | [AMO][arch-security]
ArchLinux PKGBUILD (source) Search | `alsrc` | [AMO][arch-pkgbuild]

## Install

Expand Down Expand Up @@ -62,3 +63,4 @@ ArchLinux Security Search | `alsec` | [AMO][arch-security]
[arch-wiki]:https://addons.mozilla.org/en-US/firefox/addon/archlinux-wiki-search/
[arch-man]:https://addons.mozilla.org/en-US/firefox/addon/archlinux-manual-pages-search/
[arch-security]:https://addons.mozilla.org/en-US/firefox/addon/arch-security-search/
[arch-pkgbuild]:https://addons.mozilla.org/en-US/firefox/addon/arch-pkgbuild-search/
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ web-ext build -s ./web-extensions/v3/arch-forum-a -a ./dist
web-ext build -s ./web-extensions/v3/arch-forum-k -a ./dist
web-ext build -s ./web-extensions/v3/arch-man -a ./dist
web-ext build -s ./web-extensions/v3/arch-security -a ./dist
web-ext build -s ./web-extensions/v3/arch-pkgbuild -a ./dist
1 change: 1 addition & 0 deletions web-extensions/v3/arch-pkgbuild/icons/arch-pkg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions web-extensions/v3/arch-pkgbuild/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"manifest_version": 3,
"name": "ArchLinux PKGBUILD (source) Search",
"short_name": "archlinux_search_pkgbuild",
"description": "Adds ArchLinux PKGBUILD as a search engine.",
"version": "1.0.0",
"icons": {
"16": "icons/arch-pkg.svg",
"64": "icons/arch-pkg.svg",
"256": "icons/arch-pkg.svg"
},
"chrome_settings_overrides": {
"search_provider": {
"name": "ArchLinux PKGBUILD",
"keyword": "alsrc",
"favicon_url": "icons/arch-pkg.svg",
"search_url": "https://gitlab.archlinux.org/archlinux/packaging/packages/{searchTerms}/-/blob/main/PKGBUILD?ref_type=heads"
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
},
"gecko_android": {
"strict_min_version": "121.0"
}
},
"author": "noraj",
"homepage_url": "https://github.com/noraj/firefox-extension-arch-pkgearch"
}

0 comments on commit 7357f17

Please sign in to comment.