blob: 06bee5b3158fa79b10f8d85e1f91fc949ceac0ac (
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
|
# Maintainer: Hans Gaiser <hansg91@gmail.com>
pkgname=ids-peak
pkgdesc="IDS peak is a modern, free software development kit for all USB3 Vision and GigE Vision compliant industrial cameras from any manufacturer."
pkgver=2.6.0
pkgrel=1
arch=(x86_64)
license=(custom)
url="https://en.ids-imaging.com/ids-peak.html"
depends=('libusb' 'qt5-base' 'qt5-multimedia' 'hicolor-icon-theme')
source=(
"https://en.ids-imaging.com/files/downloads/ids-peak/software/linux-desktop/ids-peak-linux-x86-$pkgver.0-64.tgz"
"ids-peak.rules"
"ids-peak-sysusers.conf"
)
sha512sums=('371ec0ca53f40e3482f99320f0b318b033b42d8b5a8206f3107bf69734741ad2e21bee29a3aab67ae7f3dbf9c195c2e018dfb3a744fbab79c47aefbc8d3d4818'
'c92de0fa8f5c95ae95a715f70b6dfedb86a566eb80a9b090bb604785837e39ef40e3896d5e8f1f9271647958b87e4cef42dc0ed3a14cc4a1dd77c560d1ad5c4b'
'05b961501a56b1827986aabc2a5ea8320b711fb0089615b212711814906c52af51205f04ffd9df436510362b185911797176bb6ed71bec4e35db8b1cd4d1f408')
_dir="ids-peak_$pkgver.0-16136_amd64"
package() {
mkdir "$pkgdir/usr"
cp -R "$srcdir/$_dir/bin" "$pkgdir/usr"
cp -R "$srcdir/$_dir/include" "$pkgdir/usr"
cp -R "$srcdir/$_dir/lib" "$pkgdir/usr"
cp -R "$srcdir/$_dir/share" "$pkgdir/usr"
install -D -m 644 "$srcdir/ids-peak.rules" -t "$pkgdir/usr/lib/udev/rules.d"
install -D -m 644 "$srcdir/ids-peak-sysusers.conf" "$pkgdir/usr/lib/sysusers.d/ids-peak-sysusers.conf"
}
|