diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-02-17 17:32:01 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-02-17 17:32:01 -0300 |
commit | 88e1da204a82b0e8c0fa1a9e42ecd1b86a08eab8 (patch) | |
tree | 37421daac725a396555168b30cacc1868b02611e /libre/icecat-spell-ru/PKGBUILD | |
parent | 308f6ff034c928c0c4fc2ce168df7192ca2b1209 (diff) | |
parent | 9e3260441a96b92953b3cfc91cf552f2d5177225 (diff) |
Merge branch 'master' of vparabola:abslibre
Diffstat (limited to 'libre/icecat-spell-ru/PKGBUILD')
-rw-r--r-- | libre/icecat-spell-ru/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libre/icecat-spell-ru/PKGBUILD b/libre/icecat-spell-ru/PKGBUILD new file mode 100644 index 000000000..5b088817a --- /dev/null +++ b/libre/icecat-spell-ru/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 90907 2013-05-15 13:06:09Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Maciej Sitarz <macieks@freesco.pl> + +pkgname=icecat-spell-ru +pkgver=0.4.4 +pkgrel=13.1 +pkgdesc="Russian spellchecker dictionary for IceCat" +arch=(any) +url="https://addons.mozilla.org/firefox/dictionaries/" +license=("GPL") +depends=("icecat") +provides=(firefox-spell-ru=$pkgver) +noextract=(russian_spellchecking_dictionary_with_io_support-$pkgver-fx+tb+sm.xpi) +source=(https://addons.mozilla.org/firefox/downloads/file/98798/russian_spellchecking_dictionary-$pkgver-fx+tb+sm.xpi) +md5sums=('269a8bdd38a5641b5f6cfb12715f1029') + +package() { +# _ffver=`pacman -Q icecat | cut -f2 -d\ | cut -f1 -d-` +# depends=("icecat>=${_ffver}" "icecat<=${_ffver/0/99}") + + cd $srcdir + rm $srcdir/*.xpi + local _dir=$pkgdir/usr/lib/icecat/browser/extensions/ru@dictionaries.addons.mozilla.org + mkdir -p "${_dir}" + cd "${_dir}" + sed -i 's#<em:maxVersion>.*</em:maxVersion>#<em:maxVersion>20.*</em:maxVersion>#' $srcdir/install.rdf + cp -r $srcdir/* "${_dir}" + find ${_dir} -type f -exec chmod 0644 {} \; + touch ${_dir}/chrome.manifest +} |