Commit e089943e authored by Ed Reel's avatar Ed Reel Committed by Chris Thurber

Update texinfo from 6.5-0 to 6.7 (#3783)

Add pre-built binaries
parent 948f37c2
...@@ -3,21 +3,21 @@ require 'package' ...@@ -3,21 +3,21 @@ require 'package'
class Texinfo < Package class Texinfo < Package
description 'Texinfo is the official documentation format of the GNU project.' description 'Texinfo is the official documentation format of the GNU project.'
homepage 'https://www.gnu.org/software/texinfo/' homepage 'https://www.gnu.org/software/texinfo/'
version '6.5-0' version '6.7'
source_url 'https://ftpmirror.gnu.org/texinfo/texinfo-6.5.tar.xz' source_url 'https://ftpmirror.gnu.org/texinfo/texinfo-6.7.tar.xz'
source_sha256 '77774b3f4a06c20705cc2ef1c804864422e3cf95235e965b1f00a46df7da5f62' source_sha256 '988403c1542d15ad044600b909997ba3079b10e03224c61188117f3676b02caa'
binary_url ({ binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/texinfo-6.5-0-chromeos-armv7l.tar.xz', aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/texinfo-6.7-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/texinfo-6.5-0-chromeos-armv7l.tar.xz', armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/texinfo-6.7-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/texinfo-6.5-0-chromeos-i686.tar.xz', i686: 'https://dl.bintray.com/chromebrew/chromebrew/texinfo-6.7-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/texinfo-6.5-0-chromeos-x86_64.tar.xz', x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/texinfo-6.7-chromeos-x86_64.tar.xz',
}) })
binary_sha256 ({ binary_sha256 ({
aarch64: '9f279aad0636d64d0cb14d603923c6755e1a72245b89b448f134284d86994666', aarch64: 'c01bcef457daa115be3bb4a7dbbf36263b491f500217e226b5ffbcb8777d706d',
armv7l: '9f279aad0636d64d0cb14d603923c6755e1a72245b89b448f134284d86994666', armv7l: 'c01bcef457daa115be3bb4a7dbbf36263b491f500217e226b5ffbcb8777d706d',
i686: '4ab3d66b3a15f1114008a46caa825d1b03ba79b242836c5954d11ee177767bd6', i686: '14d8e01b60692cba6eae6de7c7fd6bb2cf9187b22bc51f3d45d5c6340cb47619',
x86_64: 'ba12fa7582cdf7428c92be26c1dc31476bc73c21dfd42b84a3f0a8c5f525335b', x86_64: '1f77c47871a7096cb013e696ebb0a7ce5cb9f6b5d68dd48862b5e6b605ecf4bb',
}) })
depends_on 'gettext' => :build depends_on 'gettext' => :build
...@@ -30,18 +30,18 @@ class Texinfo < Package ...@@ -30,18 +30,18 @@ class Texinfo < Package
def self.build def self.build
# configure and make # configure and make
system './configure', system './configure',
"--prefix=#{CREW_PREFIX}", "--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}", "--libdir=#{CREW_LIB_PREFIX}",
'--with-external-Text-Unidecode', '--with-external-Text-Unidecode',
'--with-external-Unicode-EastAsianWidth' '--with-external-Unicode-EastAsianWidth'
system "make" system 'make'
end end
def self.install def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install" system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end end
def self.check def self.check
system "make check" system 'make', 'check'
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment