diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-01-03 12:07:28 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-01-03 12:07:28 -0300 |
commit | 41f96635759489132086f9c599af6b6b8af20db2 (patch) | |
tree | d2e5bb1996af265637ddab938b5a79d9af004c56 /mozilla-testing/icecat-i18n/PKGBUILD.in | |
parent | df7d8525f2e848a9a6b1f317c1426982b464adea (diff) | |
parent | 6f87594cae18e4ec676280e40b38984ea3bc39e6 (diff) | |
download | abslibre-41f96635759489132086f9c599af6b6b8af20db2.tar.gz abslibre-41f96635759489132086f9c599af6b6b8af20db2.tar.bz2 abslibre-41f96635759489132086f9c599af6b6b8af20db2.zip |
Merge branch 'master' of ssh://gparabola/abslibre
Diffstat (limited to 'mozilla-testing/icecat-i18n/PKGBUILD.in')
-rw-r--r-- | mozilla-testing/icecat-i18n/PKGBUILD.in | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/mozilla-testing/icecat-i18n/PKGBUILD.in b/mozilla-testing/icecat-i18n/PKGBUILD.in new file mode 100644 index 000000000..90c901e31 --- /dev/null +++ b/mozilla-testing/icecat-i18n/PKGBUILD.in @@ -0,0 +1,46 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> +# Contributor: fauno <fauno@kiwwwi.com.ar> +# Contributor: Figue <ffigue@gmail.com> +# Based on firefox-i18n package + +# When updating to a newer upstream release: +# - Edit variables in in Makefile. +# - (optionally) edit PKGBUILD.in +# - Run 'make'. It will take care of everything else for you. + +_langpacks=@LANGPACKS@ + +pkgbase='icecat-i18n' +pkgname=($(for lang in ${_langpacks[@]} + do echo icecat-i18n-$lang | tr A-Z a-z + done)) +_pkgver=@_PKGVER@ +pkgver=@PKGVER@ +pkgrel=@PKGREL@ +pkgdesc="Language packs for GNUzilla IceCat." +arch=('any') +license=('MPL') +url="http://www.gnu.org/software/gnuzilla/" +depends=("icecat=${pkgver}") +source=($(for lang in ${_langpacks[@]} + do echo http://gnuzilla.gnu.org/download/langpacks/$pkgver/$lang.xpi + done)) +noextract=($(for lang in ${_langpacks[@]} + do echo $lang.xpi + done)) + +build() { + cd "${srcdir}" +} + +_path="/usr/lib/icecat-$_pkgver/extensions/" + +for lang in ${_langpacks[@]} +do + eval " +package_icecat-i18n-$(echo $lang | tr A-Z a-z) () { + install -Dm644 '$srcdir/$lang.xpi' \"\${pkgdir}\"'${_path}langpack-$lang@firefox.mozilla.org.xpi' +} +" +done + |