blob: a926470d1ad756968a9b346f7a0168ff2364cfe2 (
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
53
54
55
|
# Maintainer: Jesus Alonso <doragasu at hotmail dot com>
# NOTE: As I want these packages for Genesis/Megadrive development, they do
# only support the m68000 CPU. If you want to support other m68k variants,
# either modify _target_cpu to suit your needs, or go wild, remove the
# --with-cpu switches and change --disable-multilib with --enable-multilib.
# Be warned that multilib packages will take a lot more time to build, and
# will also require more disk space.
_target=m68k-elf
_target_cpu=m68000
pkgname=${_target}-gdb
pkgver=15.1
pkgrel=1
pkgdesc="The GNU Project Debugger (${_target})"
arch=('i686' 'x86_64')
license=('GPL')
url="https://www.gnu.org/software/gdb/"
depends=("${_target}-binutils" "${_target}-gcc" 'zlib' 'guile')
PKGEXT="pkg.tar.zst"
source=("https://ftp.gnu.org/gnu/gdb/gdb-${pkgver}.tar.xz"
"https://ftp.gnu.org/gnu/gdb/gdb-${pkgver}.tar.xz.sig")
sha256sums=(SKIP SKIP)
validpgpkeys=(F40ADB902B24264AA42E50BF92EDB04BFF325CF3)
prepare() {
cd ${srcdir}/gdb-${pkgver}
# hack! - some configure tests for header files using "$CPP $CPPFLAGS"
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
mkdir ${srcdir}/gdb-build
}
build() {
cd ${srcdir}/gdb-build
../gdb-${pkgver}/configure --prefix=/usr \
--target=${_target} \
--disable-multilib \
--with-cpu=${_target_cpu}
make
}
package() {
cd ${srcdir}/gdb-build
make DESTDIR=${pkgdir} install
# Remove unwanted files
rm -rf ${pkgdir}/usr/share
rm -rf ${pkgdir}/usr/include
}
|