mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 06:34:37 +08:00
47 lines
1.2 KiB
Bash
47 lines
1.2 KiB
Bash
# Maintainer: Drake Justice <djustice@chakraos.org>
|
|
|
|
pkgname=gdb
|
|
pkgver=7.7.1
|
|
pkgrel=1
|
|
pkgdesc="The GNU Debugger"
|
|
arch=('x86_64')
|
|
url="http://www.gnu.org/software/gdb/"
|
|
license=('GPL3')
|
|
depends=('ncurses' 'expat' 'python2' 'xz')
|
|
makedepends=('texinfo')
|
|
backup=('etc/gdb/gdbinit')
|
|
install=gdb.install
|
|
source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.bz2{,.sig})
|
|
md5sums=('77b20b515e7c25f032cb9732a66620fe'
|
|
'SKIP')
|
|
|
|
prepare() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
# hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
|
|
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
|
|
}
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr --disable-nls \
|
|
--with-system-readline \
|
|
--with-python=/usr/bin/python2 \
|
|
--with-system-gdbinit=/etc/gdb/gdbinit
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
# install "custom" system gdbinit
|
|
install -dm755 $pkgdir/etc/gdb
|
|
touch $pkgdir/etc/gdb/gdbinit
|
|
|
|
# resolve conflicts with binutils
|
|
rm ${pkgdir}/usr/include/{ansidecl,bfd,bfdlink,dis-asm,symcat}.h
|
|
rm ${pkgdir}/usr/share/info/{bfd,configure,standards}.info
|
|
}
|