blob: 19ec183a221ab25a1626c36724b277e0bae79b45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Marko Korhonen <firefox-gnome-theme@marko.korhonen.cc>
# Based on the existing AUR package firefox-gnome-theme-git
# This PKGBUILD is automatically generated by https://github.com/rafaelmardojai/firefox-gnome-theme/blob/v132/scripts/generate-pkgbuild.sh
# when a release is published on GitHub. Do not edit this file directly.
pkgname=firefox-gnome-theme
pkgver=132
pkgrel=1
pkgdesc='A GNOME theme for Firefox'
arch=('any')
url="https://github.com/rafaelmardojai/$pkgname"
license=('Unlicense')
optdepends=('firefox: primary compatible browser' 'librewolf: alternative compatible browser')
conflicts=("$pkgname-git")
install="$pkgname.install"
source=("$pkgname-$pkgver.tar.gz::https://github.com/rafaelmardojai/$pkgname/archive/refs/tags/v$pkgver.tar.gz" "INSTALL.md")
md5sums=('b94f336bf15782071cba4dc73d188f64'
'25f18456221ffc91f472b1abff8aae84')
package() {
cd "$srcdir/$pkgname-$pkgver"
install -d "$pkgdir/usr/lib/$pkgname"
cp -ra theme userChrome.css userContent.css configuration "$pkgdir/usr/lib/$pkgname"
# Install docs
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
install -Dm644 "$srcdir/INSTALL.md" "$pkgdir/usr/share/doc/$pkgname/INSTALL.md"
}
|