summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0111ddf9f92618bfb69ec387030ca8ec2ab64663 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Maintainer: XZS <d.f.fischer at web dot de>
# This PKGBUILD is maintained on GitHub <https://github.com/dffischer/mozilla-extensions>.
# You may find it convenient to file issues and pull requests there.

pkgname=firefox-extension-beyond-australis-git
pkgver=1.4.8
pkgrel=2
pkgdesc='A Firefox add-on to improve the feeling of using the new Australis theme.'
url='https://github.com/Quicksaver/The-Fox--Only-Better'
arch=('any')
license=('MPLv2')
depends=('firefox')
replaces=('firefox-extension-the-fox-only-better')
install=discontinuation-notice.install

makedepends+=('git')
source+=("${_gitname:=${pkgname%-git}}::${_giturl:-git+$url}")
for integ in $(get_integlist)
do
  typeset -n array="${integ}sums"
  array+=('SKIP')
done
provides+=("$_gitname=$pkgver")
conflicts+=("$_gitname")

# Move down repository content for easier access by following functions.
prepare() {
  cp -rfT --reflink=auto "$_gitname" .
  rm -rf "$_gitname"
}

makedepends+=(rasqal)

sparql() {
  roqet -e "PREFIX em: <http://www.mozilla.org/2004/em-rdf#> SELECT ?x WHERE { $1 }" \
    -D "${2:-install.rdf}" -r csv 2>/dev/null | tr -d '\r' | tail -n 1 | head -c -1
}

# Retrieve current compatibility information from install.rdf.
query-version() {
  sparql "[] em:id '$2' ; em:${1}Version ?x" install.rdf
}

pkgver() {
  sparql '<urn:mozilla:install-manifest> em:version ?x' | tr - .
  echo -n .
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
version-range() {
  if [ -z "$(sparql "?x em:type ?type. filter(?type in ('2', '64'))")" ] ||
    [ -n "$(sparql "?x em:strictCompatibility 'true'")" ] ||
    { [ -e chrome.manifest ] &&
      grep '^binary-component[ \t]' chrome.manifest ; }
  then
    local emid=$(emid $1)
    echo "$1>$(version min $emid)" "$1<$(version max $emid)"
  else
    echo "$1>$(version min $(emid $1))"
  fi
}

emid() {
  case $1 in
    firefox)     echo '{ec8030f7-c20a-464f-9b0e-13a3a9e97384}' ;;
    thunderbird) echo '{3550f703-e582-4d05-9a08-453d09bdfdc6}' ;;
    *) return 1 ;;
  esac
}

version() {
  local version="$(query-version $1 $2)"
  if [[ $version =~ ([[:digit:]]+).\* ]]; then
    if [[ $1 = max ]]; then
      echo $(( ${BASH_REMATCH[1]} + 1 ))
    else
      echo "=${BASH_REMATCH[1]}"
    fi
  else
    echo "=$version"
  fi
}
prepare_target() {
  local target=${pkgname%%-*}
  id="$(sparql '<urn:mozilla:install-manifest> em:id ?x')"
  destdir="$pkgdir/usr/lib/${target/firefox/firefox\/browser}/extensions"
  install -d "$destdir"
}

depends=(${pkgname%%-*})

package() {
  compose_dependencies
  prepare_target
  cp --no-preserve=ownership,mode -r . "$destdir/$id"
  find "$destdir/$id" -mindepth 1 -name ".*" -exec rm -rf '{}' +
}

# Hidden from mksrcinfo in silly subfunction.
compose_dependencies() {
  depends=($(version-range ${pkgname%%-*}))
}