mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
41 lines
1.5 KiB
Ruby
41 lines
1.5 KiB
Ruby
require 'package'
|
|
|
|
class Hunspell_base < Package
|
|
description 'Hunspell is a spell checker and morphological analyzer library'
|
|
homepage 'http://hunspell.github.io/'
|
|
version '1.7.0-1'
|
|
license 'MPL-1.1, GPL-2 and LGPL-2.1'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/hunspell/hunspell/archive/v1.7.0.tar.gz'
|
|
source_sha256 'bb27b86eb910a8285407cf3ca33b62643a02798cf2eef468c0a74f6c3ee6bc8a'
|
|
binary_compression 'tar.xz'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e3e77aa133961b491fee9c7b139d3ae40f04a407faff775cf76a204a947a7b62',
|
|
armv7l: 'e3e77aa133961b491fee9c7b139d3ae40f04a407faff775cf76a204a947a7b62',
|
|
i686: 'd4cdc61aac3ab02d3234146364cb1c747e0c070a219197f6990f1d61877b3b13',
|
|
x86_64: '9f7a88d1e448094147b004a80b62ec5e9cf25b5e93ccbb363a2dddb3461ed8a2'
|
|
})
|
|
|
|
depends_on 'readline'
|
|
|
|
def self.build
|
|
system 'autoreconf -vfi'
|
|
system './configure',
|
|
"CPPFLAGS=-I#{CREW_PREFIX}/include -I#{CREW_PREFIX}/include/ncursesw -I#{CREW_PREFIX}/include/ncurses",
|
|
"--prefix=#{CREW_PREFIX}",
|
|
"--include=#{CREW_PREFIX}/include",
|
|
"--libdir=#{CREW_LIB_PREFIX}",
|
|
'--with-ui',
|
|
'--with-readline'
|
|
system "sed -i 's,/usr/share,#{CREW_PREFIX}/share,g' man/hunspell.1"
|
|
system "sed -i 's,/usr/share,#{CREW_PREFIX}/share,g' src/tools/hunspell.cxx"
|
|
system "sed -i 's,ncurses.h,#{CREW_PREFIX}/include/ncursesw/ncurses.h,' src/tools/hunspell.cxx"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|