diff options
author | Pablo Santamaria <pablosantamaria@gmail.com> | 2014-02-03 16:43:41 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-02-08 11:10:08 -0600 |
commit | b0d516353a16846cad36dae2270813d88b4e28f7 (patch) | |
tree | 4f52d1cf4637cfd9e51ebca0fed909288b0960e4 /office/hunspell-en | |
parent | a67f6543065ec50cbdc3dcf8291e1c955cb531df (diff) | |
download | slackbuilds-b0d516353a16846cad36dae2270813d88b4e28f7.tar.gz |
office/hunspell-en: Added (English hunspell dictionaries).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office/hunspell-en')
-rw-r--r-- | office/hunspell-en/README | 1 | ||||
-rw-r--r-- | office/hunspell-en/hunspell-en.SlackBuild | 82 | ||||
-rw-r--r-- | office/hunspell-en/hunspell-en.info | 14 | ||||
-rw-r--r-- | office/hunspell-en/slack-desc | 19 |
4 files changed, 116 insertions, 0 deletions
diff --git a/office/hunspell-en/README b/office/hunspell-en/README new file mode 100644 index 0000000000..bd7a5198bb --- /dev/null +++ b/office/hunspell-en/README @@ -0,0 +1 @@ +English hunspell dictionaries diff --git a/office/hunspell-en/hunspell-en.SlackBuild b/office/hunspell-en/hunspell-en.SlackBuild new file mode 100644 index 0000000000..8a8c624fb0 --- /dev/null +++ b/office/hunspell-en/hunspell-en.SlackBuild @@ -0,0 +1,82 @@ +#!/bin/sh + +# Slackware build script for hunspell-en + +# Copyright 2014, Pablo Santamaria (pablosantamaria@gmail.com) +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Based on the Arch PKGBUILD + +PRGNAM=hunspell-en +VERSION=${VERSION:-7.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +ARCH="noarch" + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +mkdir -p $PRGNAM-$VERSION +cd $PRGNAM-$VERSION + +for file in hunspell-en_US-$VERSION-0.zip hunspell-en_CA-$VERSION-0.zip en_GB.zip ; do + unzip $CWD/$file +done + +install -dm755 $PKG/usr/share/hunspell +install -m644 en_*.dic en_*.aff $PKG/usr/share/hunspell + +pushd $PKG/usr/share/hunspell/ +en_GB_aliases="en_AG en_AU en_BS en_BW en_BZ en_DK en_GH en_HK en_IE en_IN en_JM en_NA en_NG en_NZ en_SG en_TT en_ZA en_ZW" +for lang in $en_GB_aliases; do + ln -s en_GB.aff $lang.aff + ln -s en_GB.dic $lang.dic +done +en_US_aliases="en_PH" +for lang in $en_US_aliases; do + ln -s en_US.aff $lang.aff + ln -s en_US.dic $lang.dic +done +popd + +install -dm755 $PKG/usr/share/myspell/dicts +pushd $PKG/usr/share/myspell/dicts +for file in $PKGDIR/usr/share/hunspell/*; do + ln -sv ../../hunspell/$(basename $file) . +done +popd + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +install -m644 README_en_??.txt $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/office/hunspell-en/hunspell-en.info b/office/hunspell-en/hunspell-en.info new file mode 100644 index 0000000000..1b9fb33a51 --- /dev/null +++ b/office/hunspell-en/hunspell-en.info @@ -0,0 +1,14 @@ +PRGNAM="hunspell-en" +VERSION="7.1" +HOMEPAGE="http://wordlist.sourceforge.net/" +DOWNLOAD="http://downloads.sourceforge.net/wordlist/hunspell-en_US-7.1-0.zip \ + http://downloads.sourceforge.net/wordlist/hunspell-en_CA-7.1-0.zip \ + http://en-gb.pyxidium.co.uk/dictionary/en_GB.zip" +MD5SUM="8eb485db0a722eb29a5eca517a22e367 \ + 1921a5011d0f34e17d2e3f050d62a2c8 \ + 218909136738f4564b81ecd145ade6ee" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Pablo Santamaria" +EMAIL="pablosantamaria@gmail.com" diff --git a/office/hunspell-en/slack-desc b/office/hunspell-en/slack-desc new file mode 100644 index 0000000000..0391a202ac --- /dev/null +++ b/office/hunspell-en/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +hunspell-en: hunspell-en (English hunspell dictionaries) +hunspell-en: +hunspell-en: English hunspell dictionaries. +hunspell-en: +hunspell-en: +hunspell-en: +hunspell-en: +hunspell-en: +hunspell-en: +hunspell-en: +hunspell-en: |