32 lines
881 B
Bash
32 lines
881 B
Bash
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
|
|
# Contributor: Florian Aust <aust.flo@gmail.com>
|
|
# based on "/usr/share/psd/browsers/firefox"
|
|
|
|
pkgname=profile-sync-daemon-librewolf
|
|
pkgver=2022.11.29
|
|
pkgrel=1
|
|
pkgdesc="LibreWolf browser support for profile-sync-daemon"
|
|
arch=('any')
|
|
license=(
|
|
GPL-3.0-or-later
|
|
)
|
|
depends=(
|
|
profile-sync-daemon
|
|
)
|
|
optdepends=(
|
|
librewolf
|
|
librewolf-bin
|
|
)
|
|
install="$pkgname.install"
|
|
source=(
|
|
'librewolf'
|
|
"$pkgname.install"
|
|
)
|
|
b2sums=('c04ac3c33be47f54d6fe8363481a98de8e15815145ae34b73fbae60bdcba495eebb3d1b80258baa35f8968cc8e51c93d8789f5e313a6a7a3233337c6d847f891'
|
|
'47f0578da7e1292e00a2f962a1c6174975bdf234ec1c9719f5cdc94209917708332574fbd38066848698f39e883698b2d1b71c3f921ecea3747075d351c1e2b5')
|
|
|
|
package() {
|
|
install -Dm644 librewolf "$pkgdir/usr/share/psd/browsers/librewolf"
|
|
}
|
|
|
|
# vim: set ft=sh ts=4 sw=4 et:
|