-
Notifications
You must be signed in to change notification settings - Fork 314
/
Copy pathgdb.yaml
76 lines (67 loc) · 1.44 KB
/
gdb.yaml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package:
name: gdb
version: "16.2"
epoch: 0
description: The GNU Debugger
copyright:
- license: GPL-3.0-or-later AND LGPL-3.0-or-later
environment:
contents:
packages:
- autoconf
- automake
- build-base
- busybox
- ca-certificates-bundle
- expat-dev
- gmp-dev
- libtool
- linux-headers
- mpfr-dev
- ncurses-dev
- perl
- python3-dev
- readline-dev
- texinfo
- zlib-dev
- zstd-dev
pipeline:
- uses: fetch
with:
expected-sha256: 4002cb7f23f45c37c790536a13a720942ce4be0402d929c9085e92f10d480119
uri: https://ftp.gnu.org/gnu/gdb/gdb-${{package.version}}.tar.xz
- uses: autoconf/configure
with:
opts: |
--with-python=/usr/bin/python3 \
--disable-nls \
--disable-werror \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-system-readline \
--with-system-zlib
- uses: autoconf/make
- uses: autoconf/make-install
- uses: strip
subpackages:
- name: gdb-doc
pipeline:
- uses: split/manpages
- uses: split/infodir
description: gdb manpages
test:
pipeline:
- uses: test/docs
update:
enabled: true
release-monitor:
identifier: 11798
test:
pipeline:
# AUTOGENERATED
- runs: |
gdb --version
gdbserver --version
gdb --help
gdbserver --help
- uses: test/tw/ldd-check