mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* add fno_lto options to const.rb * libsigsev => 2.13 * bison => 3.8.2 * texinfo => 6.8 * mailutils => 3.13 * gnuchess => 6.2.9 * notice and yellow * mailutils: tcp-wrappers configuration * sed => 4.8-1 (use LTO) * add binaries Co-authored-by: Satadru Pramanik <satadru@gmail.com>
51 lines
1.9 KiB
Ruby
51 lines
1.9 KiB
Ruby
require 'package'
|
|
|
|
class Mailutils < Package
|
|
description 'GNU Mailutils is the swiss army knife of electronic mail handling.'
|
|
homepage 'https://mailutils.org'
|
|
version '3.13'
|
|
license 'GPL-2 and LGPL-2.1'
|
|
compatibility 'all'
|
|
source_url 'https://ftpmirror.gnu.org/mailutils/mailutils-3.13.tar.xz'
|
|
source_sha256 'd920971dcb49878a009911774fd6404f13d27bd101e2d59b664a28659a4094c7'
|
|
|
|
binary_url({
|
|
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/mailutils/3.13_armv7l/mailutils-3.13-chromeos-armv7l.tpxz',
|
|
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/mailutils/3.13_armv7l/mailutils-3.13-chromeos-armv7l.tpxz',
|
|
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/mailutils/3.13_i686/mailutils-3.13-chromeos-i686.tpxz',
|
|
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/mailutils/3.13_x86_64/mailutils-3.13-chromeos-x86_64.tpxz'
|
|
})
|
|
binary_sha256({
|
|
aarch64: 'ad6e2116b39db4db712d59caddf7a70bfe0cb1e206d595af4011eaac29d4136a',
|
|
armv7l: 'ad6e2116b39db4db712d59caddf7a70bfe0cb1e206d595af4011eaac29d4136a',
|
|
i686: '686e6342e25f5e34c1f84bd75df7fda7b51dca020d485c7d9d0489c57b4e24d7',
|
|
x86_64: 'b135bb16017bf602bd00b8f5ccd28b2582627c69f9abab8318e2b79e025981b3'
|
|
})
|
|
|
|
depends_on 'libdb'
|
|
depends_on 'emacs'
|
|
depends_on 'tcpwrappers'
|
|
|
|
def self.build
|
|
system "#{CREW_ENV_OPTIONS} ./configure #{CREW_OPTIONS} \
|
|
--enable-ipv6 \
|
|
--with-gnutls \
|
|
--with-berkeley-db \
|
|
--without-guile \
|
|
--with-gdbm \
|
|
--with-fribidi \
|
|
--with-unistring \
|
|
--with-tcp-wrappers \
|
|
--with-readline"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
|
|
def self.check
|
|
system 'make check || /bin/true' # Check 471 will fail
|
|
end
|
|
end
|