mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
71 lines
2.3 KiB
Ruby
71 lines
2.3 KiB
Ruby
# Adapted from Arch Linux gdb PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-packages/raw/packages/gdb/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/autotools'
|
|
|
|
class Gdb < Autotools
|
|
description 'The GNU Debugger'
|
|
homepage 'https://www.gnu.org/software/gdb/'
|
|
version "16.3-#{CREW_GCC_VER}-#{CREW_PY_VER}"
|
|
license 'GPL3'
|
|
compatibility 'all'
|
|
source_url "https://ftpmirror.gnu.org/gdb/gdb-#{version.split('-').first}.tar.xz"
|
|
source_sha256 'bcfcd095528a987917acf9fff3f1672181694926cc18d609c99d0042c00224c5'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd74a71602b10817ab94c27126606733dfa302f000efbcb4cbc4c384c61cac855',
|
|
armv7l: 'd74a71602b10817ab94c27126606733dfa302f000efbcb4cbc4c384c61cac855',
|
|
i686: 'f7988dc74a14b82c2d04521db6394d0cca5b07a3f72f999c463131d98fba09c1',
|
|
x86_64: '5033b982e7e62d1203da74ac942a328038d48e7be57dd48d52e0a7889d58c1ef'
|
|
})
|
|
|
|
depends_on 'binutils' # R
|
|
depends_on 'boost' # R
|
|
depends_on 'elfutils' # R
|
|
depends_on 'expat' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gmp' # R
|
|
depends_on 'mpfr' # R
|
|
depends_on 'ncurses' # R
|
|
depends_on 'python3' # R
|
|
depends_on 'readline' # R
|
|
depends_on 'source_highlight' # R
|
|
depends_on 'texinfo' => :build
|
|
depends_on 'xxhash' # R
|
|
depends_on 'xzutils' # R
|
|
depends_on 'zlib' # R
|
|
depends_on 'zstd' # R
|
|
|
|
conflicts_ok # binutils conflicts
|
|
|
|
autotools_configure_options "--disable-binutils \
|
|
--disable-ld \
|
|
--disable-nls \
|
|
--enable-64-bit-bfd \
|
|
--enable-install-libbfd \
|
|
--enable-host-shared \
|
|
--enable-lto \
|
|
--enable-shared \
|
|
--enable-sim \
|
|
--enable-source-highlight \
|
|
--enable-tui \
|
|
--with-curses \
|
|
--with-lzma \
|
|
--with-pkgversion=Chromebrew \
|
|
--with-python=python3 \
|
|
--with-system-gdbinit=#{CREW_PREFIX}/etc/gdb/gdbinit \
|
|
--with-system-readline \
|
|
--with-system-zlib \
|
|
#{'--with-x' unless ARCH == 'i686'}"
|
|
|
|
def self.install
|
|
system "make -C gdb DESTDIR=#{CREW_DEST_DIR} install"
|
|
system "make -C bfd DESTDIR=#{CREW_DEST_DIR} install"
|
|
system "make -C gdb/data-directory DESTDIR=#{CREW_DEST_DIR} install"
|
|
system "make -C gdbserver DESTDIR=#{CREW_DEST_DIR} install"
|
|
FileUtils.rm_f "#{CREW_DEST_LIB_PREFIX}/libinproctrace.so"
|
|
end
|
|
end
|