blob: 3888cc934ec5a61ea20b76293e2510f1484cff01 (
plain)
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
|
# Maintainer: taotieren <admin@taotieren.com>
pkgbase=canopenlinux-git
pkgname=canopenlinux-git
pkgver=4.0.r11.gebcc3c8
pkgrel=2
groups=()
pkgdesc="CANopenNode on Linux devices"
arch=(x86_64
aarch64
riscv64)
url="https://github.com/CANopenNode/CANopenLinux"
license=('Apache-2.0')
provides=(${pkgname%-git})
conflicts=(${pkgname%-git})
depends=(glibc)
makedepends=(git
doxygen)
optdepends=(
"can-utils: Linux-CAN / SocketCAN user space applications"
"can-doc: Linux-CAN / SocketCAN documentation"
"can-isotp-dkms: Kernel modules for isotp"
"iproute2: IP Routing Utilities")
source=("${pkgname}::git+${url}.git"
"git+https://github.com/CANopenNode/CANopenNode.git")
sha256sums=('SKIP'
'SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
( set -o pipefail
git describe --long --tag --abbrev=7 2>/dev/null | sed 's/^v//g;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
prepare()
{
git -C "${srcdir}/${pkgname}" clean -dfx
cd "${srcdir}/${pkgname}"
git submodule init
git config submodule.CANopenNode.url "$srcdir/CANopenNode"
git -c protocol.file.allow=always submodule update
}
build() {
make -C $pkgname PREFIX=/usr
make -C $pkgname/cocomm PREFIX=/usr
cd "${srcdir}/${pkgname}"
doxygen
}
package() {
cd "${srcdir}/${pkgname}"
install -Dm0755 canopend -t "$pkgdir/usr/bin"
install -Dm0755 cocomm/cocomm -t "$pkgdir/usr/bin"
install -Dm0644 README.md "$pkgdir/usr/share/doc/${pkgname%-git}/${pkgname%-git}.md"
install -Dm0644 cocomm/README.md "$pkgdir/usr/share/doc/${pkgname%-git}/cocomm.md"
cp -rva html "$pkgdir/usr/share/doc/${pkgname%-git}/"
}
|