Files
chromebrew/packages/aspell_en.rb
Ed Reel 126888df5e Fix false positive status in version.rb (#13239)
* Fix false positive status in version.rb

Strip off only leading non-numeric characters when extracting the version

* Change gsub to sub
2025-10-29 20:14:30 +00:00

32 lines
1.0 KiB
Ruby

require 'package'
class Aspell_en < Package
description 'English Aspell Dictionary'
homepage 'https://aspell.net'
version '2020.12.07-0'
license 'myspell-en_CA-KevinAtkinson, public-domain, Princeton, and Ispell'
compatibility 'all'
source_url 'https://gnu.askapache.com/aspell/dict/en/aspell6-en-2020.12.07-0.tar.bz2'
source_sha256 '4c8f734a28a088b88bb6481fcf972d0b2c3dc8da944f7673283ce487eac49fb3'
binary_compression 'tar.xz'
binary_sha256({
aarch64: 'a3f897c049eb4c7b6caf9c1d08c894b6f9541681a0ce9cd2b664226a1574d69d',
armv7l: 'a3f897c049eb4c7b6caf9c1d08c894b6f9541681a0ce9cd2b664226a1574d69d',
i686: 'ec4684e5665cf4ef98c90ac28567e2d5a6833c9468263486eb81e3fd2d1e27ca',
x86_64: '2b39dd619b454a9fcf4bad9b09b4a60163744209dc9dbad4c87c0971bca363f1'
})
depends_on 'aspell'
def self.build
system "env CFLAGS='-flto=auto -ltinfo' CXXFLAGS='-flto=auto' \
LDFLAGS='-flto=auto' ./configure"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end