File: control

package info (click to toggle)
arduino-builder 1.3.25-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,904 kB
  • sloc: cpp: 6,434; makefile: 33; sh: 3
file content (34 lines) | stat: -rw-r--r-- 1,448 bytes parent folder | download
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
Source: arduino-builder
Section: electronics
Priority: optional
Maintainer: Debian Electronics Team <pkg-electronics-devel@lists.alioth.debian.org>
Uploaders: Rock Storm <rockstorm@gmx.com>
   , Geert Stappers <stappers@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-golang (>= 1.6.3),
               golang-any,
               golang-github-go-errors-errors-dev,
               golang-github-stretchr-testify-dev
Standards-Version: 4.5.1
Homepage: https://github.com/arduino/arduino-builder
Vcs-Browser: https://salsa.debian.org/electronics-team/arduino/arduino-builder
Vcs-Git: https://salsa.debian.org/electronics-team/arduino/arduino-builder.git
XS-Go-Import-Path: arduino.cc/arduino-builder
Testsuite: autopkgtest-pkg-go
Rules-Requires-Root: no

Package: arduino-builder
Architecture: any
Built-Using: ${misc:Built-Using}
Depends: ${misc:Depends},
         ${shlibs:Depends},
         arduino-ctags
Description: Command line tool for compiling Arduino sketches
 This tool is able to parse Arduino Hardware specifications, properly run 'gcc'
 and produce compiled sketches.
 .
 An Arduino sketch differs from a standard C program in that it misses a 'main'
 (provided by the Arduino core), function prototypes are not mandatory, and
 libraries inclusion is automagic (you just have to  #include  them). This tool
 generates function prototypes and gathers library paths, providing 'gcc' with
 all the needed '-I' params.