aspell_en.rb 515 Bytes
Newer Older
Ed Reel's avatar
Ed Reel committed
1 2 3 4 5 6 7
require 'package'

class Aspell_en < Package
  description 'English Aspell Dictionary'
  homepage 'ftp://ftp.gnu.org/gnu/aspell/dict/0index.html'
  version '2017.01.22-0'
  source_url 'ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-2017.01.22-0.tar.bz2'
Ed Reel's avatar
Ed Reel committed
8
  source_sha256 '93c73fae3eab5ea3ca6db3cea8770715a820f1b7d6ea2b932dd66a17f8fd55e1'
Ed Reel's avatar
Ed Reel committed
9 10 11 12 13 14 15 16 17 18 19 20

  depends_on 'aspell'

  def self.build
    system './configure'
    system 'make'
  end

  def self.install
    system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
  end
end