File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ platform 'debian-13-armhf' do |plat |
2+ plat . servicedir '/lib/systemd/system'
3+ plat . defaultdir '/etc/default'
4+ plat . servicetype 'systemd'
5+ plat . codename 'trixie'
6+
7+ plat . install_build_dependencies_with 'DEBIAN_FRONTEND=noninteractive; apt-get install -qy --no-install-recommends '
8+
9+ packages = [
10+ 'build-essential' ,
11+ 'make' ,
12+ 'quilt' ,
13+ 'pkg-config' ,
14+ 'debhelper' ,
15+ 'rsync' ,
16+ 'fakeroot' ,
17+ 'libbz2-dev' ,
18+ 'libreadline-dev' ,
19+ 'libselinux1-dev' ,
20+ 'make' ,
21+ 'pkg-config' ,
22+ 'cmake' ,
23+ 'gcc' ,
24+ 'swig' ,
25+ 'systemtap-sdt-dev' ,
26+ 'zlib1g-dev'
27+ ]
28+
29+ plat . provision_with "export DEBIAN_FRONTEND=noninteractive && apt-get update -qq && apt-get install -qy --no-install-recommends #{ packages . join ( ' ' ) } "
30+
31+ # Not currently used
32+ plat . docker_image 'debian:13'
33+ plat . docker_registry 'docker.io'
34+ plat . docker_arch 'linux/arm/v7'
35+
36+ end
You can’t perform that action at this time.
0 commit comments