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
77
78
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=canboat
pkgver=5.1.3
pkgrel=1
epoch=
pkgdesc="CAN Boat provides NMEA 2000 and NMEA 0183 utilities. It contains a NMEA 2000 PGN decoder and can read and write N2K messages. It is not meant as an end-user tool but as a discovery mechanism for delving into NMEA 2000 networks."
arch=($CARCH)
url="https://github.com/canboat/canboat"
license=('Apache-2.0')
groups=()
depends=(bash
glibc
perl
php
ksh)
makedepends=(
# help2man
git
libftdi
libxml2
libxslt
python3
python-pip)
checkdepends=()
optdepends=()
provides=(${pkgname})
conflicts=(${pkgname})
replaces=()
backup=()
options=()
install=
changelog=
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
noextract=()
sha256sums=('a7424aedc8e7e4293e57a295aff0932cbb5827e01f18545c8a821af8013cc988')
#validpgpkeys=()
build() {
# export LDFLAGS="-z relro -z now -z shstk"
cd "${srcdir}/${pkgname}-${pkgver}"
make
make generated
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make tests
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="$pkgdir" PREFIX=/usr install
install -Dm0644 docs/* -t "${pkgdir}/usr/share/doc/${pkgname}"
install -Dm0644 /dev/stdin "${pkgdir}/usr/lib/udev/rules.d/60-canboat-actisense.rules" <<EOF
# Copy this file to /etc/udev/rules.d/
# If rules fail to reload automatically, you can refresh udev rules
# with the command "sudo udevadm control --reload"
ACTION!="add|change", GOTO="canboat_actisense_rules_end"
SUBSYSTEM=="gpio", MODE="0660", TAG+="uaccess"
SUBSYSTEM!="usb|tty|hidraw", GOTO="canboat_actisense_rules_end"
# Please keep this list sorted by VID:PID
# sudo echo 'ftdi_sio vendor=0x0403 product=0xd9aa' >>/etc/modules
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="d9aa", MODE="660", TAG+="uaccess"
# SUBSYSTEM=="tty", ACTION=="add", ENV{ID_SERIAL}=="Actisense_NGT-1_1FD34", NAME="actisense" compatible adapters
ENV{ID_SERIAL}=="Actisense_NGT-1_1FD34", NAME="actisense", MODE="660", TAG+="uaccess"
LABEL="canboat_actisense_rules_end"
EOF
}
|