blob: 391180be0b7e15e12fea42e308806717ced70f0b (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Maintainer: filips <projects at filips dot si>
# Maintainer: Peter Cai <peter at typeblog dot net>
# Contributor: TheFool <rn6l05d28@relay.firefox.com>
# This file is automatically updated/generated on every package release
# Any changes made directly to the AUR repository will be overwritten
# Please contribute changes to the main GitHub repository instead
# See: https://github.com/filips123/PWAsForFirefox/blob/main/native/packages/aur/firefox-pwa/PKGBUILD
_pkgname="PWAsForFirefox"
pkgname="firefox-pwa"
pkgdesc="A tool to install, manage and use Progressive Web Apps (PWAs) in Mozilla Firefox (native component)"
pkgver="2.13.1"
pkgrel=1
url="https://pwasforfirefox.filips.si/"
arch=("x86_64" "i686" "aarch64" "armv7h")
license=("MPL2")
makedepends=("rust" "cargo")
optdepends=("firefox: Support for browser extension")
install=package.install
source=("$pkgname-$pkgver.tar.gz::https://github.com/filips123/PWAsForFirefox/archive/refs/tags/v$pkgver.tar.gz")
b2sums=('8b149340f5af702190c87ea623cc391413de6e115393231836534e4155ff980fa293e45a9875ed44c0bd7992d43f458d0fce136518b349f3522730cdf6399ad7')
prepare() {
cd $srcdir/$_pkgname-$pkgver/native/
# Set the correct version in source files
sed -i "s/version = \"0.0.0\"/version = \"$pkgver\"/g" Cargo.toml
sed -i "s/DISTRIBUTION_VERSION = '0.0.0'/DISTRIBUTION_VERSION = '$pkgver'/g" userchrome/profile/chrome/pwa/chrome.jsm
# We don't use libexec on Arch
sed -i "s@/usr/libexec/firefoxpwa-connector@/usr/lib/firefoxpwa/firefoxpwa-connector@g" manifests/linux.json
}
build() {
# Needed to make LTO work with GCC
export CFLAGS="-fuse-linker-plugin"
cd $srcdir/$_pkgname-$pkgver/native/
RUSTUP_TOOLCHAIN=stable cargo build --release
}
check() {
cd $srcdir/$_pkgname-$pkgver/native/
[ "$(./target/release/firefoxpwa --version)" == "firefoxpwa $pkgver" ]
}
package() {
cd $srcdir/$_pkgname-$pkgver/native/
# Executables
install -Dm755 target/release/firefoxpwa $pkgdir/usr/bin/firefoxpwa
install -Dm755 target/release/firefoxpwa-connector $pkgdir/usr/lib/firefoxpwa/firefoxpwa-connector
# Manifest
install -Dm644 manifests/linux.json $pkgdir/usr/lib/mozilla/native-messaging-hosts/firefoxpwa.json
# Completions
install -Dm755 target/release/completions/firefoxpwa.bash $pkgdir/usr/share/bash-completion/completions/firefoxpwa
install -Dm755 target/release/completions/firefoxpwa.fish $pkgdir/usr/share/fish/vendor_completions.d/firefoxpwa.fish
install -Dm755 target/release/completions/_firefoxpwa $pkgdir/usr/share/zsh/vendor-completions/_firefoxpwa
# UserChrome
mkdir -p $pkgdir/usr/share/firefoxpwa/userchrome/
cp -r userchrome/* $pkgdir/usr/share/firefoxpwa/userchrome/
# Documentation
install -Dm644 ../README.md $pkgdir/usr/share/doc/firefoxpwa/README.md
install -Dm644 ../native/README.md $pkgdir/usr/share/doc/firefoxpwa/README-NATIVE.md
install -Dm644 ../extension/README.md $pkgdir/usr/share/doc/firefoxpwa/README-EXTENSION.md
install -Dm644 packages/deb/copyright $pkgdir/usr/share/doc/firefoxpwa/copyright
# AppStream Metadata
install -Dm644 packages/appstream/si.filips.FirefoxPWA.metainfo.xml $pkgdir/usr/share/metainfo/si.filips.FirefoxPWA.metainfo.xml
install -Dm644 packages/appstream/si.filips.FirefoxPWA.svg $pkgdir/usr/share/icons/hicolor/scalable/apps/si.filips.FirefoxPWA.svg
}
|