blob: 22367d06db060510b248a6bf8ee21ba662872da9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Maintainer: Aviel Warschawski <mail@aviel.org>
pkgname=gdb-multiarch
pkgver=15.1
pkgrel=1
pkgdesc='The GNU Debugger for all gdb supported architectures (i386/arm/mips...)'
arch=(i686 x86_64)
url='http://www.gnu.org/software/gdb/'
license=(GPL3)
makedepends=(glibc gcc-libs texinfo python guile ncurses expat xz mpfr
source-highlight boost readline)
depends=(glibc ncurses libncursesw.so gcc-libs expat xz mpfr source-highlight gdb-common=$pkgver
readline libreadline.so guile python libelf)
options=(!emptydirs !lto)
source=(https://ftp.gnu.org/gnu/gdb/gdb-15.1.tar.xz{,.sig})
sha256sums=('38254eacd4572134bca9c5a5aa4d4ca564cbbd30c369d881f733fb6b903354f2'
'SKIP')
validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker <brobecker@adacore.com>
prepare() {
cd gdb-$pkgver
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
}
build() {
cd gdb-$pkgver
mkdir -p build && cd build
../configure \
--enable-targets=all \
--prefix=/build \
--enable-languages=all \
--enable-multilib \
--enable-interwork \
--with-system-readline \
--disable-nls \
--with-python=/usr/bin/python \
--with-system-gdbinit=/etc/gdb/gdbinit
make
}
package() {
cd gdb-$pkgver/build
make DESTDIR="$pkgdir" install
# Following files conflict with 'gdb' package
mkdir -p "$pkgdir"/usr/bin
mv "$pkgdir"/build/bin/gdb "$pkgdir"/usr/bin/gdb-multiarch
rm -r "$pkgdir"/build
}
|