diff options
Diffstat (limited to 'libre/iceape-l10n')
-rw-r--r-- | libre/iceape-l10n/check.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libre/iceape-l10n/check.sh b/libre/iceape-l10n/check.sh new file mode 100644 index 000000000..6aa005b2d --- /dev/null +++ b/libre/iceape-l10n/check.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# helper script to check the local language list against upstream + +# extract pkgbase from pkgbuild +pkgbase="$(bash -c "source PKGBUILD && echo \"\$pkgbase\"")" + +# extract language list from pkgbuild +bash -c "source PKGBUILD && printf '%s\n' \"\${_languages[@]}\" | cut -d ' ' -f1 | sort" \ + > $pkgbase-l10n.local + +# load language list from upstream +url="$(bash -c "source PKGBUILD && echo \"\$_url\"")/" +curl -sL $url | \ + grep '\.xpi' | cut -d'"' -f2 | rev | cut -d'/' -f1 | cut -d'.' -f3 | rev | sort\ + > $pkgbase-l10n.remote + +diff -rupN $pkgbase-l10n.local $pkgbase-l10n.remote +rm -f $pkgbase-l10n.{local,remote} |