mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add unbuilt libtool to updater-libtool-2.5.4 * Adjust check for libtool. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-libtool-2.5.4: Build Run on linux/386. * updater-libtool-2.5.4: Build Run on linux/arm/v7. * updater-libtool-2.5.4: Package File Update Run on linux/386 container. * updater-libtool-2.5.4: Package File Update Run on linux/amd64 container. * Fix typo. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
42 lines
1.4 KiB
Ruby
42 lines
1.4 KiB
Ruby
require 'package'
|
|
|
|
class Libtool < Package
|
|
description 'GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface.'
|
|
homepage 'https://www.gnu.org/software/libtool/'
|
|
version '2.5.4'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url "https://ftpmirror.gnu.org/libtool/libtool-#{version}.tar.xz"
|
|
source_sha256 'f81f5860666b0bc7d84baddefa60d1cb9fa6fceb2398cc3baca6afaa60266675'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '18ade89384da064df570c86ff63ae190c10d1c5d34d872713eddb94871931074',
|
|
armv7l: '18ade89384da064df570c86ff63ae190c10d1c5d34d872713eddb94871931074',
|
|
i686: 'cc1ba27ddb6617e1201f977bad9648acbd4902ae54625c77be485378e3c6c782',
|
|
x86_64: '2df93fa3536d089531733db725b75a5e2f9bc1afb039167fee10538625ac8266'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'm4'
|
|
|
|
def self.build
|
|
system "./configure #{CREW_CONFIGURE_OPTIONS} \
|
|
--enable-ltdl-install"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
|
|
def self.check
|
|
# Some tests fail on arm builds.
|
|
# Link order of deplibs FAILED (link-order2.at:126)
|
|
# static linking flags for programs FAILED (static.at:177)
|
|
# Run tests with low max_cmd_len FAILED (cmdline_wrap.at:48)
|
|
# Failure on i686: FAILED (lt_dlopenext.at:242)
|
|
system 'make check', exception: false
|
|
end
|
|
end
|