diff options
author | Jenrikku | 2024-05-15 10:17:37 +0200 |
---|---|---|
committer | Jenrikku | 2024-05-15 10:17:37 +0200 |
commit | 03ce24fffe762647fb1e89d7af683d74f41e6cd1 (patch) | |
tree | 17e7650fca56b36c665c2661acdc3a495c115ad2 | |
download | aur-03ce24fffe762647fb1e89d7af683d74f41e6cd1.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 13 | ||||
-rw-r--r-- | PKGBUILD | 17 |
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..5a8489969fb7 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = firefox-extensions-shinigami-eyes-bin + pkgdesc = Highlights transphobic/anti-LGBT and trans-friendly subreddits/facebook pages/groups with different colors. + pkgver = 1.0.33 + pkgrel = 1 + url = https://github.com/shinigami-eyes/shinigami-eyes + arch = any + license = MIT + depends = firefox + noextract = shinigami_eyes-1.0.33.xpi + source = https://addons.mozilla.org/firefox/downloads/file/4035973/shinigami_eyes-1.0.33.xpi + sha256sums = c2ef94a9303040c267202505fd7aff311f6a945b0127be49c55a8b46c8f96db2 + +pkgname = firefox-extensions-shinigami-eyes-bin diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..ce4d007c5685 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: Jenrikku (JkKU) + +pkgname=firefox-extensions-shinigami-eyes-bin +pkgver=1.0.33 +pkgrel=1 +pkgdesc="Highlights transphobic/anti-LGBT and trans-friendly subreddits/facebook pages/groups with different colors." +url=https://github.com/shinigami-eyes/shinigami-eyes +arch=("any") +license=("MIT") +depends=('firefox') +source=("https://addons.mozilla.org/firefox/downloads/file/4035973/shinigami_eyes-$pkgver.xpi") +noextract=("${source##*/}") +sha256sums=('c2ef94a9303040c267202505fd7aff311f6a945b0127be49c55a8b46c8f96db2') + +package() { + install -Dm644 "${source##*/}" "$pkgdir/usr/lib/firefox/browser/extensions/shinigamieyes@shinigamieyes.xpi" +} |