File: update_upstream_files

package info (click to toggle)
listserialportsc 1.4.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: ansic: 70; makefile: 44; sh: 23
file content (19 lines) | stat: -rwxr-xr-x 412 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
# License: LGPL-3.0-only  same as upstream
# Copyright: 2018 Geert Stappers <stappers@stappers.it>

FILES=""
FILES="${FILES} main.c"
FILES="${FILES} jnilib.c"
FILES="${FILES} LICENSE.md"
# and the "build instructions":
FILES="${FILES} compile_linux.sh"

RAWGITURL=https://raw.githubusercontent.com/arduino/listSerialPortsC/master/

for F in ${FILES}
do
  wget -q -O ${F} ${RAWGITURL}${F}
done

# l l