aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aspell.rb
AgeCommit message (Collapse)Author
2014-03-17aspell: use patch DSLJack Nagel
2014-03-14aspell: fix const definitions for llvmBrett Koonce
Patch (thanks to kpachnis) from: http://www.freebsd.org/cgi/query-pr.cgi?pr=180565&cat= Closes #27559. Closes #27411.
2013-09-17aspell: can't access resources directly in class bodyJack Nagel
2013-09-16aspell: use resourcesJack Nagel
An updated brew-aspell-dictionaries script is on the way, but it depends on features that haven't been merged yet.
2013-08-19Use ENV.{append,prepend}_path in formulaeJack Nagel
2013-06-03aspell: fix audit warningJack Nagel
Closes #19731.
2013-04-22aspell: update remaining method namesAlexander Wenzowski
Closes #19367. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-21Remove global methods from formulaeSimon Sigurdhsson
Removes any global methods from formulae, and moves #kext_prefix (which seems to be at least somewhat abstractable) into the Formula class. The only formula with global methods is now aspell; it (and its generating script in contrib) has been changed to prefix that method with `aspell_`, to minimize the risk of name collisions. Closes #19331. Closes #19343. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-02-02aspell: autogenerate optionsAdam Vandenberg
Generate options from the available_languages list. Closes #9723.
2013-01-30aspell formula description --with-langkorthaerd
Closes #17446. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-12aspell: add English dictionary by defaultYousef Ourabi
Fixes #16031. Closes #16972. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-03aspell: restore mirrors to language subformulaeJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-09-03Fix subformulae sha1s.Mike McQuaid
2012-09-03Batch convert MD5 formula to SHA1.Mike McQuaid
Closes #14653.
2012-06-10aspell: style nitsJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-01Use new fails_with DSL syntaxJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-30aspell: use a space in class inheritanceJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-30Add mirrors for GNU formulaeJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-12Use automatic mirror selection for GNU downloadsJack Nagel
It seems that the main GNU download site has issues in some places outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick a nearby mirror. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-08Aspell builds with LLVMMax Howell
Closes #7497.
2011-07-29Aspell: Fix broken languagesColin Hebert
The binary 'aspell' is required by some languages during configuration, so the path is also set before calling "./configure" Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-07-29Aspell 0.60.6.1Colin Hebert
Includes update to english (7.1-0), spanish (1.11-2) Add the kannada language (0.01-1) Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-25Update fails_with_llvm in formulaeAdam Vandenberg
2011-03-20aspell: keep going if a bad lang is passedAdam Vandenberg
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2010-09-16Update Formula: aspellAlexis Hildebrandt
Add --all option to install all available dictionaries. List dictionaries that fail to install in caveats and omit these when installing all dictionaires via the --all option. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-16Update Formula: aspellAlexis Hildebrandt
Some changes on how language dictionary formulae are handled so updating to new dictionary version can be handled by the brew-aspell-dictionaries script in contributions. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-10Use renamed ARGV#options_only in aspell formulaChris Hoffman
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-07Update formulae for version 0.7Adam Vandenberg
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
2010-06-16Add "fails_with_llvm" to formula to document LLVM build breaks.Adam Vandenberg
Replaced ENV.gcc_4_2 + comments with calls to "fails_with_llvm", to specifically message to the user when a formula is known or suspected to not build with LLVM. If the user specifies "--use-llvm", the message will be displayed, but compilation will be tried anyway. Since using LLVM is now an advanced/hidden feature instead of the default on 10.6, we'll let the user try anyway (and submit patches if things are now working.)
2010-02-08Update Formula: aspell. Fix dictionary install.Alexis Hildebrandt
Add aspell binaries to $PATH when installing dictionaries, so that the aspell prezip binary finds its prezip-bin. If it doesn't it fails silently and installs empty dictionaries. Signed-off-by: David Höppner <0xffea@gmail.com>
2010-01-24Fixes #547spahl
Fixed syntax error in aspell formula.
2010-01-24aspell caveats so people know to use --langMax Howell
2010-01-24Update Formula: aspell. Add language dictionariesAlexis Hildebrandt
Handling dictionaries for aspell is quirky. Separate brews for the dictionaries feel strange, just as having all dictionaries in one aspell dictionary brew. Adding the dictionaries as options to aspell does not feel right either, but not having any dictionaries makes aspell useless.
2009-12-16Revert "Aspell compiles with newer LLVM."Max Howell
This reverts commit f34d241fa1b43742416192e31271ed80ac427803. Doesn't seemingly build with LLVM for some people.
2009-12-12Aspell compiles with newer LLVM.Adam Vandenberg
2009-10-15s/require 'brewkit'/require 'formula'/gMax Howell
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
2009-10-12Fixes #88; Aspell doesn't compile with LLVMMax Howell
2009-10-02Don't force gcc in Aspell, now that LD is set correctly.Adam Vandenberg
2009-09-30Add Formula for aspell.Philip Weaver
GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell. A pretty vanilla formula. I don't know what configure options would be useful. As it is, it works for me with Emacs.