You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
558 B

TERMUX_PKG_HOMEPAGE=http://sourceforge.net/projects/hunspell/files/Spelling%20dictionaries/en_US/
TERMUX_PKG_DESCRIPTION="American english dictionary for hunspell"
TERMUX_PKG_VERSION=1.1
TERMUX_PKG_BUILD_REVISION=1
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
termux_step_make_install () {
curl -L http://downloads.sourceforge.net/project/hunspell/Spelling%20dictionaries/en_US/en_US.zip > en_US.zip
unzip en_US.zip
rm -Rf $TERMUX_PREFIX/share/hunspell/en_US.{aff,dic}
mkdir -p $TERMUX_PREFIX/share/hunspell/
mv en_US.{aff,dic} $TERMUX_PREFIX/share/hunspell/
}