Skip to content

Commit 03071ba

Browse files
authored
Merge pull request #67 from Gitii/feat/add-debian13-armhf-platform-defaults
feat: add default platform config for debian13 armhf
2 parents 387da03 + 6e87368 commit 03071ba

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
packages = %w(
8+
build-essential
9+
cmake
10+
curl
11+
debhelper
12+
devscripts
13+
fakeroot
14+
make
15+
pkg-config
16+
quilt
17+
rsync
18+
systemd
19+
)
20+
plat.provision_with "export DEBIAN_FRONTEND=noninteractive && apt-get update -qq && apt-get install -qy --no-install-recommends #{packages.join(' ')}"
21+
plat.install_build_dependencies_with "DEBIAN_FRONTEND=noninteractive; apt-get install -qy --no-install-recommends "
22+
plat.docker_image "debian:13"
23+
plat.docker_arch "linux/arm/v7"
24+
end

0 commit comments

Comments
 (0)