blob: e5d2a8b7b7e36a23b3faccd48a958bfabec0513d (
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
|
# Maintainer: Joey Dumont <joey.dumont@gmail.com>
_target=mips64-elf
pkgname=$_target-gdb
pkgver=13.1
pkgrel=1
pkgdesc="The GNU Debugger (${_target})"
arch=(i686 x86_64)
url='http://www.gnu.org/software/gdb/'
license=(GPL3)
depends=(mpfr gdb-common guile libelf)
makedepends=(texinfo python)
options=(!emptydirs)
source=("ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz")
sha256sums=('115ad5c18d69a6be2ab15882d365dda2a2211c14f480b3502c6eba576e2e95a0')
prepare() {
cd "${srcdir}/gdb-${pkgver}"
mkdir "${srcdir}/build-gdb"
# hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
}
build() {
cd "${srcdir}/build-gdb"
"${srcdir}"/gdb-${pkgver}/configure --prefix=/usr \
--target=${_target} \
--disable-nls \
--with-python=/usr/bin/python \
--enable-tui \
--with-system-readline \
--with-sysroot=/usr/${_target} \
--enable-lto \
--disable-sim
make
}
package() {
cd build-gdb
make DESTDIR="$pkgdir" install
# fix conflicts with gdb
rm -r "$pkgdir/usr/include/gdb"
rm -r "$pkgdir/usr/share/info"
# comes from gdb-
rm -r "$pkgdir/usr/share/gdb"
}
|